diff options
Diffstat (limited to 'src/compiler')
-rw-r--r-- | src/compiler/glsl/opt_copy_propagation.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/compiler/glsl/opt_copy_propagation.cpp b/src/compiler/glsl/opt_copy_propagation.cpp index 807ba8f5738..443905d8837 100644 --- a/src/compiler/glsl/opt_copy_propagation.cpp +++ b/src/compiler/glsl/opt_copy_propagation.cpp @@ -76,6 +76,7 @@ public: mem_ctx = ralloc_context(0); this->acp = new(mem_ctx) exec_list; this->kills = new(mem_ctx) exec_list; + killed_all = false; } ~ir_copy_propagation_visitor() { |