summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_disasm.c
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2014-07-05 22:21:40 -0700
committerKenneth Graunke <kenneth@whitecape.org>2014-07-08 12:31:01 -0700
commit503391b46f753e1f8c0bc771776a51719d0507e4 (patch)
treefd2c3028454aecfd97a8759081cb91424b9311a6 /src/mesa/drivers/dri/i965/brw_disasm.c
parente13a6406c3d55162d6f4641f3ccca7635b9a5212 (diff)
downloadexternal_mesa3d-503391b46f753e1f8c0bc771776a51719d0507e4.zip
external_mesa3d-503391b46f753e1f8c0bc771776a51719d0507e4.tar.gz
external_mesa3d-503391b46f753e1f8c0bc771776a51719d0507e4.tar.bz2
i965/disasm: Fix disassembly of the any16h/all16h predicates.
BRW_PREDICATE_ALIGN1_ANY16H was incorrectly being disassembled as "all16h", and ALL16H would probably print as "(null)". Signed-off-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_disasm.c')
-rw-r--r--src/mesa/drivers/dri/i965/brw_disasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c
index 00c0fc4..b28cba8 100644
--- a/src/mesa/drivers/dri/i965/brw_disasm.c
+++ b/src/mesa/drivers/dri/i965/brw_disasm.c
@@ -252,7 +252,7 @@ static const char *const pred_ctrl_align1[16] = {
[BRW_PREDICATE_ALIGN1_ANY8H] = ".any8h",
[BRW_PREDICATE_ALIGN1_ALL8H] = ".all8h",
[BRW_PREDICATE_ALIGN1_ANY16H] = ".any16h",
- [BRW_PREDICATE_ALIGN1_ANY16H] = ".all16h",
+ [BRW_PREDICATE_ALIGN1_ALL16H] = ".all16h",
[BRW_PREDICATE_ALIGN1_ANY32H] = ".any32h",
[BRW_PREDICATE_ALIGN1_ANY32H] = ".all32h",
};