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:

committed by
Ian Romanick

parent
e1acbfca32
commit
e340854115
@@ -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()
|
||||
|
@@ -96,7 +96,7 @@ public:
|
||||
|
||||
|
||||
ir_constant *
|
||||
ir_instruction::constant_expression_value()
|
||||
ir_rvalue::constant_expression_value()
|
||||
{
|
||||
ir_constant_visitor visitor;
|
||||
|
||||
|
Reference in New Issue
Block a user