diff options
author | Kenneth Graunke <[email protected]> | 2010-04-21 15:14:02 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2010-04-21 15:37:10 -0700 |
commit | 32898866886e218fee4dab741ba8dfcef2c2aa5c (patch) | |
tree | 7db449c8cba6d1bb63fde944009e1adc45c407f2 /ir.h | |
parent | 9fa99f3b6c84fe927ba97e6584cd919f097a6c9a (diff) |
Remove ir_label since it is no longer used.
Diffstat (limited to 'ir.h')
-rw-r--r-- | ir.h | 20 |
1 files changed, 0 insertions, 20 deletions
@@ -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 |