aboutsummaryrefslogtreecommitdiffstats
path: root/src/amd/compiler
diff options
context:
space:
mode:
authorRhys Perry <[email protected]>2019-09-24 14:34:28 +0100
committerRhys Perry <[email protected]>2019-09-25 15:28:44 +0000
commit00aa413baeac4ae2c4752ae1d5347983caabcd57 (patch)
tree624fc8b0020ab20c510ec8af49054601afb2a9e6 /src/amd/compiler
parentb125dc4839be82c51229ec825a22e00de1089191 (diff)
aco: fix GFX9 opcode for v_xad_u32
Fixes various dEQP-VK.image.store.* tests. Signed-off-by: Rhys Perry <[email protected]> Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/compiler')
-rw-r--r--src/amd/compiler/aco_opcodes.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py
index 2221e2817af..c9c31c3c6ef 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),