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:
Rhys Perry 2020-05-04 14:11:00 +01:00 committed by Marge Bot
parent 1f2fd9c62e
commit 01ce7887bf
1 changed files with 1 additions and 1 deletions

View File

@ -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;