glsl: Fix ir_expression::constant_expression_value()
authorChad Versace <chad.versace@intel.com>
Tue, 9 Nov 2010 01:30:13 +0000 (17:30 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Tue, 9 Nov 2010 08:50:54 +0000 (00:50 -0800)
When the type of the ir_expression is error_type, return NULL.
This fixes bug 31371.

src/glsl/ir_constant_expression.cpp

index 048c020..ce13a06 100644 (file)
@@ -54,6 +54,9 @@ dot(ir_constant *op0, ir_constant *op1)
 ir_constant *
 ir_expression::constant_expression_value()
 {
+   if (this->type->is_error())
+      return NULL;
+
    ir_constant *op[2] = { NULL, NULL };
    ir_constant_data data;