Browse Source

i965/disasm: Add break/cont/halt to list of has_uip().

Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
tags/10.4-branchpoint
Matt Turner 11 years ago
parent
commit
bef7a025eb
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      src/mesa/drivers/dri/i965/brw_disasm.c

+ 4
- 1
src/mesa/drivers/dri/i965/brw_disasm.c View File

@@ -110,7 +110,10 @@ has_jip(struct brw_context *brw, enum opcode opcode)
return opcode == BRW_OPCODE_IF ||
opcode == BRW_OPCODE_ELSE ||
opcode == BRW_OPCODE_ENDIF ||
opcode == BRW_OPCODE_WHILE;
opcode == BRW_OPCODE_WHILE ||
opcode == BRW_OPCODE_BREAK ||
opcode == BRW_OPCODE_CONTINUE ||
opcode == BRW_OPCODE_HALT;
}

static bool

Loading…
Cancel
Save