i965: Dump the WHILE jump distance on gen6.
authorEric Anholt <eric@anholt.net>
Wed, 1 Dec 2010 23:00:08 +0000 (15:00 -0800)
committerEric Anholt <eric@anholt.net>
Wed, 1 Dec 2010 23:22:59 +0000 (15:22 -0800)
src/mesa/drivers/dri/i965/brw_disasm.c

index 962c04128b8280deb74b9f6a3a7638ee32b05556..6b61f7af15d7e4a1addc66373f4d62da22ff0ce1 100644 (file)
@@ -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);
     }