From b723a15bd065895c9773be550831d0b33dbf3cf7 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Wed, 28 Feb 2024 14:49:17 +0000 Subject: [PATCH] aco: fix GFX6 buffer_load_dwordx4 opcode number MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rhys Perry Reviewed-by: Georg Lehmann Reviewed-by: Daniel Schürmann Part-of: --- 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 4a512113c3f..e38a0b74058 100644 --- a/src/amd/compiler/aco_opcodes.py +++ b/src/amd/compiler/aco_opcodes.py @@ -1495,7 +1495,7 @@ MUBUF = { (0x0c, 0x0c, 0x14, 0x14, 0x0c, 0x14, "buffer_load_dword"), (0x0d, 0x0d, 0x15, 0x15, 0x0d, 0x15, "buffer_load_dwordx2"), ( -1, 0x0f, 0x16, 0x16, 0x0f, 0x16, "buffer_load_dwordx3"), - (0x0f, 0x0e, 0x17, 0x17, 0x0e, 0x17, "buffer_load_dwordx4"), + (0x0e, 0x0e, 0x17, 0x17, 0x0e, 0x17, "buffer_load_dwordx4"), (0x18, 0x18, 0x18, 0x18, 0x18, 0x18, "buffer_store_byte"), ( -1, -1, -1, 0x19, 0x19, 0x24, "buffer_store_byte_d16_hi"), (0x1a, 0x1a, 0x1a, 0x1a, 0x1a, 0x19, "buffer_store_short"),