From: Michael Beck Date: Fri, 3 Mar 2006 16:58:34 +0000 (+0000) Subject: used new is_return X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=549b1f776ea1b031e6e9c07a23b5b4c26214d58c;p=libfirm used new is_return [r7400] --- diff --git a/ir/opt/return.c b/ir/opt/return.c index c60b9c12c..2082d556a 100644 --- a/ir/opt/return.c +++ b/ir/opt/return.c @@ -68,7 +68,7 @@ void normalize_one_return(ir_graph *irg) for (n_rets = i = 0; i < n; ++i) { ir_node *node = get_Block_cfgpred(endbl, i); - if (get_irn_op(node) == op_Return) { + if (is_Return(node)) { ++n_rets; set_bit(i); @@ -206,7 +206,7 @@ void normalize_n_returns(ir_graph *irg) for (n_finals = n_rets = i = 0; i < n; ++i) { ir_node *ret = get_Block_cfgpred(endbl, i); - if (get_irn_op(ret) == op_Return && can_move_ret(ret)) { + if (is_Return(ret) && can_move_ret(ret)) { /* * Ok, all conditions met, we can move this Return, put it * on our work list.