mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 19:30:11 +01:00
agx: Fix extraneous bits with b2b32
From expanding mov_imm to take a 64-bit immediate. this worked by accident
before. Fixes brief regression in
dEQP-GLES31.functional.compute.shared_var.basic_type.bvec3.
Fixes: dbd98aa24d1 ("agx: Fix 64-bit immediate moves")
Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24847>
This commit is contained in:
parent
ec2ab7d771
commit
f068ed0534
1 changed files with 1 additions and 1 deletions
|
|
@ -1390,7 +1390,7 @@ agx_emit_alu(agx_builder *b, nir_alu_instr *instr)
|
|||
return agx_icmpsel_to(b, dst, s0, i0, i0, i1, AGX_ICOND_UEQ);
|
||||
|
||||
case nir_op_b2b32:
|
||||
return agx_icmpsel_to(b, dst, s0, i0, i0, agx_mov_imm(b, 32, ~0),
|
||||
return agx_icmpsel_to(b, dst, s0, i0, i0, agx_mov_imm(b, 32, 0xFFFFFFFF),
|
||||
AGX_ICOND_UEQ);
|
||||
|
||||
case nir_op_b2f16:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue