panfrost/va: remove dead code for packing BRANCHZI.i16 lane mod
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

As of 839f15259a, we no longer use 'lane'
for BRANCHZI.

Signed-off-by: Benjamin Lee <benjamin.lee@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34416>
This commit is contained in:
Benjamin Lee 2025-02-15 15:38:50 -08:00 committed by Marge Bot
parent 3e82395306
commit c0be0a845d

View file

@ -614,8 +614,6 @@ va_pack_alu(const bi_instr *I, unsigned arch)
if (src_info.size == VA_SIZE_16) {
hex |= (src.swizzle == BI_SWIZZLE_H11 ? 1 : 0) << offs;
} else if (I->op == BI_OPCODE_BRANCHZ_I16) {
hex |= ((uint64_t)va_pack_combine(I, src.swizzle) << 37);
} else {
pack_assert(I, src_info.size == VA_SIZE_8);
unsigned comp = src.swizzle - BI_SWIZZLE_B0000;