diff options
Diffstat (limited to 'src/compiler/glsl/opt_constant_folding.cpp')
-rw-r--r-- | src/compiler/glsl/opt_constant_folding.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/compiler/glsl/opt_constant_folding.cpp b/src/compiler/glsl/opt_constant_folding.cpp index 150a17b2af6..de13c9e068e 100644 --- a/src/compiler/glsl/opt_constant_folding.cpp +++ b/src/compiler/glsl/opt_constant_folding.cpp @@ -89,8 +89,6 @@ ir_constant_folding_visitor::handle_rvalue(ir_rvalue **rvalue) if (constant) { *rvalue = constant; this->progress = true; - } else { - (*rvalue)->accept(this); } } |