diff options
-rw-r--r-- | src/glsl/loop_analysis.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/loop_analysis.cpp b/src/glsl/loop_analysis.cpp index 32e8b8c85b3..91e34da0ee4 100644 --- a/src/glsl/loop_analysis.cpp +++ b/src/glsl/loop_analysis.cpp @@ -154,7 +154,7 @@ loop_analysis::visit(ir_dereference_variable *ir) /* If we're not somewhere inside a loop, there's nothing to do. */ if (this->state.is_empty()) - return visit_continue_with_parent; + return visit_continue; loop_variable_state *const ls = (loop_variable_state *) this->state.get_head(); |