agx: Fix jmp_exec_none encoding

Signed-off-by: Alyssa Rosenzweig <alyssa@rosenzweig.io>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/25052>
This commit is contained in:
Alyssa Rosenzweig
2023-08-20 13:10:43 -04:00
committed by Marge Bot
parent a58bb49fc0
commit 0df6f22bd1
+1 -1
View File
@@ -316,7 +316,7 @@ op("ld_tile", (0x49, 0x7F, 8, _), dests = 1, srcs = 1,
op("st_tile", (0x09, 0x7F, 8, _), dests = 0, srcs = 2,
can_eliminate = False, imms = [FORMAT, MASK, PIXEL_OFFSET])
for (name, exact) in [("any", 0xC000), ("none", 0xC200)]:
for (name, exact) in [("any", 0xC000), ("none", 0xC020)]:
op("jmp_exec_" + name, (exact, (1 << 16) - 1, 6, _), dests = 0, srcs = 0,
can_eliminate = False, imms = [TARGET])