From: Ian Romanick Date: Wed, 2 Jun 2010 20:39:45 +0000 (-0700) Subject: There is no class ir_label, so there's no need for ir_instruction::as_label X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=35159b542c793e607a28bbffb12ab51e1081ca9b;p=mesa.git There is no class ir_label, so there's no need for ir_instruction::as_label --- diff --git a/ir.h b/ir.h index 784e41fcb67..bf3400aa921 100644 --- a/ir.h +++ b/ir.h @@ -58,7 +58,6 @@ public: virtual class ir_dereference * as_dereference() { return NULL; } virtual class ir_dereference_array * as_dereference_array() { return NULL; } virtual class ir_rvalue * as_rvalue() { return NULL; } - virtual class ir_label * as_label() { return NULL; } virtual class ir_loop * as_loop() { return NULL; } virtual class ir_assignment * as_assignment() { return NULL; } virtual class ir_call * as_call() { return NULL; }