From: Nicolai Hähnle Date: Mon, 10 Oct 2016 13:09:40 +0000 (+0200) Subject: radeonsi: fix the coordinate overloading of llvm.amdgcn.image.atomic.cmpswap.* X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=76a940893;p=mesa.git radeonsi: fix the coordinate overloading of llvm.amdgcn.image.atomic.cmpswap.* Fixes GL45-CTS.shader_image_load_store.basic-allTargets-atomic* Reviewed-by: Dave Airlie Reviewed-by: Marek Olšák --- diff --git a/src/gallium/drivers/radeonsi/si_shader.c b/src/gallium/drivers/radeonsi/si_shader.c index 8b77fd1c9f2..25146e8d43f 100644 --- a/src/gallium/drivers/radeonsi/si_shader.c +++ b/src/gallium/drivers/radeonsi/si_shader.c @@ -4195,10 +4195,15 @@ static void atomic_emit( snprintf(intrinsic_name, sizeof(intrinsic_name), "llvm.amdgcn.buffer.atomic.%s", action->intr_name); } else { + LLVMValueRef coords; char coords_type[8]; - build_type_name_for_intr(LLVMTypeOf(emit_data->args[1]), - coords_type, sizeof(coords_type)); + if (inst->Instruction.Opcode == TGSI_OPCODE_ATOMCAS) + coords = emit_data->args[2]; + else + coords = emit_data->args[1]; + + build_type_name_for_intr(coords, coords_type, sizeof(coords_type)); snprintf(intrinsic_name, sizeof(intrinsic_name), "llvm.amdgcn.image.atomic.%s.%s", action->intr_name, coords_type);