projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b4418cd
)
i965/disasm: Disassemble Z/NZ conditional modifiers as .z/.nz.
author
Matt Turner
<mattst88@gmail.com>
Sun, 24 Aug 2014 21:49:51 +0000
(14:49 -0700)
committer
Matt Turner
<mattst88@gmail.com>
Fri, 29 Aug 2014 02:06:27 +0000
(19:06 -0700)
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
src/mesa/drivers/dri/i965/brw_disasm.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/i965/brw_disasm.c
b/src/mesa/drivers/dri/i965/brw_disasm.c
index 424b21487db973842c96c88bfe92b7af51543bfe..65c6f23ead64a9fac8e8ef0057092ec0c90bd254 100644
(file)
--- a/
src/mesa/drivers/dri/i965/brw_disasm.c
+++ b/
src/mesa/drivers/dri/i965/brw_disasm.c
@@
-137,8
+137,8
@@
is_logic_instruction(unsigned opcode)
const char *const conditional_modifier[16] = {
[BRW_CONDITIONAL_NONE] = "",
- [BRW_CONDITIONAL_Z] = ".
e
",
- [BRW_CONDITIONAL_NZ] = ".n
e
",
+ [BRW_CONDITIONAL_Z] = ".
z
",
+ [BRW_CONDITIONAL_NZ] = ".n
z
",
[BRW_CONDITIONAL_G] = ".g",
[BRW_CONDITIONAL_GE] = ".ge",
[BRW_CONDITIONAL_L] = ".l",