From 00aa413baeac4ae2c4752ae1d5347983caabcd57 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Tue, 24 Sep 2019 14:34:28 +0100 Subject: [PATCH] aco: fix GFX9 opcode for v_xad_u32 Fixes various dEQP-VK.image.store.* tests. Signed-off-by: Rhys Perry Reviewed-by: Bas Nieuwenhuizen --- src/amd/compiler/aco_opcodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py index 2221e28..c9c31c3 100644 --- a/src/amd/compiler/aco_opcodes.py +++ b/src/amd/compiler/aco_opcodes.py @@ -954,7 +954,7 @@ VOP3 = { (0x12c, 0x12c, 0x1f0, 0x1f0, -1, "v_cvt_pkaccum_u8_f32", True, False), ( -1, -1, -1, 0x1f1, 0x373, "v_mad_u32_u16", False, False), ( -1, -1, -1, 0x1f2, 0x375, "v_mad_i32_i16", False, False), - ( -1, -1, -1, 0x1f2, 0x345, "v_xad_u32", False, False), + ( -1, -1, -1, 0x1f3, 0x345, "v_xad_u32", False, False), ( -1, -1, -1, 0x1f4, 0x351, "v_min3_f16", True, True), ( -1, -1, -1, 0x1f5, 0x352, "v_min3_i16", False, False), ( -1, -1, -1, 0x1f6, 0x353, "v_min3_u16", False, False), -- 2.7.4