diff options
author | Eric Anholt <[email protected]> | 2010-10-04 15:03:32 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2010-10-04 16:08:17 -0700 |
commit | 739aec39bd25e79adce306d6cf48296b7c9e4fc0 (patch) | |
tree | ce0f4071442bc515b7a52f87b379edcaec28acd0 /src/mesa/drivers/dri/i965 | |
parent | 3bf8774e9c293fcad654d1bd67d4b43247b82f97 (diff) |
i965: In disasm, gen6 fb writes don't put msg reg # in destreg_conditionalmod.
It instead sensibly appears in the src0 slot.
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-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 90520824f60..3a93b253777 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -886,7 +886,7 @@ int brw_disasm (FILE *file, struct brw_instruction *inst, int gen) string (file, ")"); } - if (inst->header.opcode == BRW_OPCODE_SEND) + if (inst->header.opcode == BRW_OPCODE_SEND && gen < 6) format (file, " %d", inst->header.destreg__conditionalmod); if (opcode[inst->header.opcode].ndst > 0) { |