summaryrefslogtreecommitdiff
path: root/ir.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-04-21 16:02:15 -0700
committerKenneth Graunke <kenneth@whitecape.org>2010-04-21 16:02:15 -0700
commit6202cbfe3614141e330501959a7322522b35f4e4 (patch)
treeeff2460f47157f403e1504811a2c5e167e846368 /ir.h
parent7bcd5bedcc16ad1be989cef7a05e6aa7711213e9 (diff)
Fix ir_dead_code for function refactoring.
Diffstat (limited to 'ir.h')
-rw-r--r--ir.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/ir.h b/ir.h
index fa9a1321e3..c93c043f5e 100644
--- a/ir.h
+++ b/ir.h
@@ -52,6 +52,7 @@ public:
*/
/*@{*/
virtual class ir_variable * as_variable() { return NULL; }
+ virtual class ir_function * as_function() { return NULL; }
virtual class ir_dereference * as_dereference() { return NULL; }
virtual class ir_rvalue * as_rvalue() { return NULL; }
virtual class ir_label * as_label() { return NULL; }
@@ -243,6 +244,11 @@ class ir_function : public ir_instruction {
public:
ir_function(const char *name);
+ virtual ir_function *as_function()
+ {
+ return this;
+ }
+
virtual void accept(ir_visitor *v)
{
v->visit(this);