mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
i965/disasm: Add break/cont/halt to list of has_uip().
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
383eccb77e
commit
bef7a025eb
1 changed files with 4 additions and 1 deletions
|
|
@ -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…
Add table
Reference in a new issue