mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-28 10:20:09 +01:00
glsl: Handle empty if statement encountered during loop analysis.
The is_loop_terminator() function was asserting that the following
kind of if statement could never occur:
if (...) { } else { }
(presumably based on the assumption that such an if statement would be
eliminated by previous optimization stages). But that isn't the
case--it's possible that previous optimization stages might simplify
more complex code down to this empty if statement, in which case it
won't be eliminated until the next time through the optimization loop.
So is_loop_terminator() needs to handle it. Fortunately it's easy to
handle--it's not a loop terminator because it does nothing.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=64330
CC: mesa-stable@lists.freedesktop.org
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
This commit is contained in:
parent
b8f13fbb85
commit
a5eecb246d
1 changed files with 2 additions and 1 deletions
|
|
@ -503,7 +503,8 @@ is_loop_terminator(ir_if *ir)
|
|||
|
||||
ir_instruction *const inst =
|
||||
(ir_instruction *) ir->then_instructions.get_head();
|
||||
assert(inst != NULL);
|
||||
if (inst == NULL)
|
||||
return false;
|
||||
|
||||
if (inst->ir_type != ir_type_loop_jump)
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue