glsl: fix uninitialized instance variable

Valgrind detected that variable ir_copy_propagation_visitor::killed_all
is uninitialized.

Signed-off-by: Jan Ziak (http://atom-symbol.net) <0xe2.0x9a.0x9b@gmail.com>
Signed-off-by: Rob Clark <robdclark@gmail.com>
This commit is contained in:
Jan Ziak
2016-07-29 13:56:00 +02:00
committed by Rob Clark
parent b107169eef
commit 427771d1c7

View File

@@ -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()
{