intel/brw: Remove duplicated implementation of brw_imm_uq/brw_imm_u64()

Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Signed-off-by: José Roberto de Souza <jose.souza@intel.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/36448>
This commit is contained in:
José Roberto de Souza 2025-07-23 10:37:01 -07:00 committed by Marge Bot
parent 14386eb7e5
commit 07f5b53dd7

View file

@ -716,13 +716,7 @@ brw_imm_q(int64_t q)
}
/** Construct int64_t immediate register */
static inline struct brw_reg
brw_imm_uq(uint64_t uq)
{
struct brw_reg imm = brw_imm_reg(BRW_TYPE_UQ);
imm.u64 = uq;
return imm;
}
#define brw_imm_uq(uq) brw_imm_u64(uq)
/** Construct integer immediate register */
static inline struct brw_reg