diff options
author | Kenneth Graunke <[email protected]> | 2014-07-17 16:41:44 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2014-07-23 15:44:08 -0700 |
commit | d6d3e6027de6c9bd409f4ed0cf47e4f6c2114df3 (patch) | |
tree | 1ace74ba308e0039e9565ebb2a472b52c8e92222 /src/mesa/drivers/dri/i965/brw_disasm.c | |
parent | 2f181bc3919b87b8bebfae7ad8568330d1780193 (diff) |
i965: Don't print WE_normal in disassembly.
Dropping this helps most lines fit in an 80 column terminal. The
absence of WE_normal also helps call attention to WE_all, where
something unusual is going on.
Signed-off-by: Kenneth Graunke <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_disasm.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 2 |
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 f66865fc4d1..c6f981a70e7 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -213,7 +213,7 @@ static const char *const accwr[2] = { }; static const char *const wectrl[2] = { - [0] = "WE_normal", + [0] = "", [1] = "WE_all" }; |