i965/disasm: Disassemble Z/NZ conditional modifiers as .z/.nz.
authorMatt Turner <mattst88@gmail.com>
Sun, 24 Aug 2014 21:49:51 +0000 (14:49 -0700)
committerMatt 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

index 424b21487db973842c96c88bfe92b7af51543bfe..65c6f23ead64a9fac8e8ef0057092ec0c90bd254 100644 (file)
@@ -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]   = ".ne",
+   [BRW_CONDITIONAL_Z]    = ".z",
+   [BRW_CONDITIONAL_NZ]   = ".nz",
    [BRW_CONDITIONAL_G]    = ".g",
    [BRW_CONDITIONAL_GE]   = ".ge",
    [BRW_CONDITIONAL_L]    = ".l",