From f3d1b40c75358f60f4224ca930f163c46659774c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Thu, 19 Jan 2006 17:25:02 +0000 Subject: [PATCH] return new irn class --- ir/be/firm/bearch_firm.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ir/be/firm/bearch_firm.c b/ir/be/firm/bearch_firm.c index ed68e6a64..2969d9597 100644 --- a/ir/be/firm/bearch_firm.c +++ b/ir/be/firm/bearch_firm.c @@ -263,6 +263,9 @@ static arch_irn_class_t firm_classify(const arch_irn_ops_t *self, const ir_node case iro_Jmp: res = arch_irn_class_branch; break; + case iro_Call: + res = arch_irn_class_call; + break; default: res = arch_irn_class_normal; } -- 2.20.1