From: Ian Romanick Date: Mon, 12 Jul 2010 22:46:16 +0000 (-0700) Subject: ir_validate: Also perform usual checks on ir_dereference_variable nodes X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=506880bc32e7bb98fd1896a9b2fe3614abab904f;p=mesa.git ir_validate: Also perform usual checks on ir_dereference_variable nodes --- diff --git a/src/glsl/ir_validate.cpp b/src/glsl/ir_validate.cpp index 74b4826e355..4284f6b1201 100644 --- a/src/glsl/ir_validate.cpp +++ b/src/glsl/ir_validate.cpp @@ -88,6 +88,8 @@ ir_validate::visit(ir_dereference_variable *ir) abort(); } + this->validate_ir(ir, this->data); + return visit_continue; }