summaryrefslogtreecommitdiff
path: root/src/glsl/ir.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-07-12 13:55:10 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-07-20 17:10:05 -0700
commite340854115f2562109c91fa908ffe6628432f989 (patch)
tree137cd12923a0b14ca6352c2188ae81e15d7f67f6 /src/glsl/ir.h
parente1acbfca322c4ac720707ec8d3fda08fab65a30b (diff)
glsl2: Move constant_expression_value method to ir_rvalue.
This prevents top-level callers from asking for the value of something that is guaranteed not to have one.
Diffstat (limited to 'src/glsl/ir.h')
-rw-r--r--src/glsl/ir.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glsl/ir.h b/src/glsl/ir.h
index 1d667be89c..b6cd1bae31 100644
--- a/src/glsl/ir.h
+++ b/src/glsl/ir.h
@@ -71,8 +71,6 @@ public:
enum ir_node_type ir_type;
const struct glsl_type *type;
- class ir_constant *constant_expression_value();
-
/** ir_print_visitor helper for debugging. */
void print(void) const;
@@ -114,6 +112,8 @@ protected:
class ir_rvalue : public ir_instruction {
public:
+ class ir_constant *constant_expression_value();
+
virtual ir_rvalue *clone(struct hash_table *) const = 0;
virtual ir_rvalue * as_rvalue()