Mesa (main): aco: Remove deprecated Operand constructors

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Tue Jul 13 18:00:03 UTC 2021


Module: Mesa
Branch: main
Commit: f438cbc23e95d95ee062f691defa4b9a850cedc1
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=f438cbc23e95d95ee062f691defa4b9a850cedc1

Author: Tony Wasserka <tony.wasserka at gmx.de>
Date:   Tue Jun 29 19:32:00 2021 +0200

aco: Remove deprecated Operand constructors

Reviewed-by: Timur Kristóf <timur.kristof at gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11653>

---

 src/amd/compiler/aco_ir.h | 8 --------
 1 file changed, 8 deletions(-)

diff --git a/src/amd/compiler/aco_ir.h b/src/amd/compiler/aco_ir.h
index 313c01826a2..c375b3857c1 100644
--- a/src/amd/compiler/aco_ir.h
+++ b/src/amd/compiler/aco_ir.h
@@ -626,14 +626,6 @@ public:
       return op;
    }
 
-   [[deprecated]] explicit Operand(uint8_t v) noexcept { *this = c8(v); };
-   [[deprecated]] explicit Operand(uint16_t v) noexcept { *this = c16(v); };
-   [[deprecated]] explicit Operand(uint32_t v, bool is64bit = false) noexcept
-   {
-      *this = c32_or_c64(v, is64bit);
-   };
-   [[deprecated]] explicit Operand(uint64_t v) noexcept { *this = c64(v); };
-
    explicit Operand(RegClass type) noexcept
    {
       isUndef_ = true;



More information about the mesa-commit mailing list