mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
gallivm: BGNFOR/ENDFOR fallthrough to BGNLOOP/ENDLOOP
This commit is contained in:
parent
6ecbbc3c05
commit
06574e45b4
1 changed files with 2 additions and 10 deletions
|
|
@ -1601,11 +1601,7 @@ emit_instruction(
|
|||
break;
|
||||
|
||||
case TGSI_OPCODE_BGNFOR:
|
||||
/* deprecated */
|
||||
assert(0);
|
||||
return FALSE;
|
||||
break;
|
||||
|
||||
/* fall through */
|
||||
case TGSI_OPCODE_BGNLOOP:
|
||||
lp_exec_bgnloop(&bld->exec_mask);
|
||||
break;
|
||||
|
|
@ -1625,11 +1621,7 @@ emit_instruction(
|
|||
break;
|
||||
|
||||
case TGSI_OPCODE_ENDFOR:
|
||||
/* deprecated */
|
||||
assert(0);
|
||||
return FALSE;
|
||||
break;
|
||||
|
||||
/* fall-through */
|
||||
case TGSI_OPCODE_ENDLOOP:
|
||||
lp_exec_endloop(&bld->exec_mask);
|
||||
break;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue