diff options
author | Matt Turner <[email protected]> | 2014-08-24 14:49:51 -0700 |
---|---|---|
committer | Matt Turner <[email protected]> | 2014-08-28 19:06:27 -0700 |
commit | 383eccb77e3a2e4f4788455ada9ca7b4497ec8c7 (patch) | |
tree | 6eee18589297b92c69d099c53b97d835e4fe68c4 /src/mesa/drivers/dri | |
parent | b4418cd4ce17cb6068fcb2c7dab874f4c4d880e1 (diff) |
i965/disasm: Disassemble Z/NZ conditional modifiers as .z/.nz.
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index 424b21487db..65c6f23ead6 100644 --- 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] = ".ne", + [BRW_CONDITIONAL_Z] = ".z", + [BRW_CONDITIONAL_NZ] = ".nz", [BRW_CONDITIONAL_G] = ".g", [BRW_CONDITIONAL_GE] = ".ge", [BRW_CONDITIONAL_L] = ".l", |