mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
aco: fix 64-bit shared_atomic_exchange
Signed-off-by: Rhys Perry <pendingchaos02@gmail.com> Reviewed-by: Daniel Schürmann <daniel@schuermann.dev> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4880>
This commit is contained in:
parent
1f2fd9c62e
commit
01ce7887bf
1 changed files with 1 additions and 1 deletions
|
|
@ -6690,7 +6690,7 @@ void visit_shared_atomic(isel_context *ctx, nir_intrinsic_instr *instr)
|
|||
op32 = aco_opcode::ds_write_b32;
|
||||
op64 = aco_opcode::ds_write_b64;
|
||||
op32_rtn = aco_opcode::ds_wrxchg_rtn_b32;
|
||||
op64_rtn = aco_opcode::ds_wrxchg2_rtn_b64;
|
||||
op64_rtn = aco_opcode::ds_wrxchg_rtn_b64;
|
||||
break;
|
||||
case nir_intrinsic_shared_atomic_comp_swap:
|
||||
op32 = aco_opcode::ds_cmpst_b32;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue