diff options
author | Rhys Perry <[email protected]> | 2019-09-24 15:45:48 +0100 |
---|---|---|
committer | Rhys Perry <[email protected]> | 2019-09-25 15:28:44 +0000 |
commit | 2faaf04c6240f44afe99ba9e51e79b0b41d390b1 (patch) | |
tree | 7f859acd2149576d8a1df02256e62925e7fb7d23 /src/amd | |
parent | 00aa413baeac4ae2c4752ae1d5347983caabcd57 (diff) |
aco: fix v_subrev_co_u32_e64 opcode
Signed-off-by: Rhys Perry <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd')
-rw-r--r-- | src/amd/compiler/aco_opcodes.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/compiler/aco_opcodes.py b/src/amd/compiler/aco_opcodes.py index c9c31c3c6ef..c680974bfec 100644 --- a/src/amd/compiler/aco_opcodes.py +++ b/src/amd/compiler/aco_opcodes.py @@ -1006,7 +1006,7 @@ VOP3 = { ( -1, -1, -1, -1, 0x378, "v_permlanex16_b32", False, False), ( -1, -1, -1, -1, 0x30f, "v_add_co_u32_e64", False, False), ( -1, -1, -1, -1, 0x310, "v_sub_co_u32_e64", False, False), - ( -1, -1, -1, -1, 0x311, "v_subrev_co_u32_e64", False, False), + ( -1, -1, -1, -1, 0x319, "v_subrev_co_u32_e64", False, False), # TODO: many 16bit instructions moved from VOP2 to VOP3 on GFX10 } for (gfx6, gfx7, gfx8, gfx9, gfx10, name, in_mod, out_mod) in VOP3: |