summaryrefslogtreecommitdiff
path: root/ir.h
diff options
context:
space:
mode:
authorKenneth Graunke <kenneth@whitecape.org>2010-04-21 15:14:02 -0700
committerIan Romanick <ian.d.romanick@intel.com>2010-04-21 15:37:10 -0700
commit32898866886e218fee4dab741ba8dfcef2c2aa5c (patch)
tree7db449c8cba6d1bb63fde944009e1adc45c407f2 /ir.h
parent9fa99f3b6c84fe927ba97e6584cd919f097a6c9a (diff)
Remove ir_label since it is no longer used.
Diffstat (limited to 'ir.h')
-rw-r--r--ir.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/ir.h b/ir.h
index 0d5b2e4d71..fa9a1321e3 100644
--- a/ir.h
+++ b/ir.h
@@ -183,26 +183,6 @@ public:
};
-class ir_label : public ir_instruction {
-public:
- ir_label(const char *label, ir_function_signature *signature);
-
- virtual ir_label *as_label()
- {
- return this;
- }
-
- virtual void accept(ir_visitor *v)
- {
- v->visit(this);
- }
-
- const char *label;
-
- ir_function_signature *signature;
-};
-
-
/*@{*/
/**
* The representation of a function instance; may be the full definition or