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.
This commit is contained in:
Kenneth Graunke
2010-07-12 13:55:10 -07:00
committed by Ian Romanick
parent e1acbfca32
commit e340854115
2 changed files with 3 additions and 3 deletions

View File

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

View File

@@ -96,7 +96,7 @@ public:
ir_constant *
ir_instruction::constant_expression_value()
ir_rvalue::constant_expression_value()
{
ir_constant_visitor visitor;