diff options
author | Eric Anholt <eric@anholt.net> | 2010-12-01 15:00:08 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-12-01 15:22:59 -0800 |
commit | a9f62881a316539658845a98b856f1bf31ca44bc (patch) | |
tree | 837d88e5f5ad0a1a14ab47f874b59e3263d13286 | |
parent | fcf6b353bfd860aa7bcc708858bef313c6fd7031 (diff) |
i965: Dump the WHILE jump distance on gen6.
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_disasm.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_disasm.c b/src/mesa/drivers/dri/i965/brw_disasm.c index 962c04128b..6b61f7af15 100644 --- a/src/mesa/drivers/dri/i965/brw_disasm.c +++ b/src/mesa/drivers/dri/i965/brw_disasm.c @@ -899,7 +899,8 @@ int brw_disasm (FILE *file, struct brw_instruction *inst, int gen) err |= dest (file, inst); } else if (gen >= 6 && (inst->header.opcode == BRW_OPCODE_IF || inst->header.opcode == BRW_OPCODE_ELSE || - inst->header.opcode == BRW_OPCODE_ENDIF)) { + inst->header.opcode == BRW_OPCODE_ENDIF || + inst->header.opcode == BRW_OPCODE_WHILE)) { format (file, " %d", inst->bits1.branch_gen6.jump_count); } |