aco: Remove deprecated Operand constructors

Reviewed-by: Timur Kristóf <timur.kristof@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11653>
This commit is contained in:
Tony Wasserka
2021-06-29 19:32:00 +02:00
committed by Marge Bot
parent cfd866ed42
commit f438cbc23e
-8
View File
@@ -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;