From 7b2ad7e6b30085c134d0adf67529538a415a005d Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Tue, 12 Oct 2004 09:03:22 +0000 Subject: [PATCH] used new get_irn_pinned() fucntion [r4104] --- ir/ir/irgopt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ir/ir/irgopt.c b/ir/ir/irgopt.c index cfc9e257f..d9dc5ea50 100644 --- a/ir/ir/irgopt.c +++ b/ir/ir/irgopt.c @@ -1375,7 +1375,7 @@ place_floats_early(ir_node *n, pdeq *worklist) mark_irn_visited(n); /* Place floating nodes. */ - if (get_op_pinned(get_irn_op(n)) == op_pin_state_floats) { + if (get_irn_pinned(n) == op_pin_state_floats) { int depth = 0; ir_node *b = new_Bad(); /* The block to place this node in */ int bad_recursion = is_Bad(get_nodes_block(n)); @@ -1398,7 +1398,7 @@ place_floats_early(ir_node *n, pdeq *worklist) ir_node *dep_block; if ((irn_not_visited(dep)) - && (get_op_pinned(get_irn_op(dep)) == op_pin_state_floats)) { + && (get_irn_pinned(dep) == op_pin_state_floats)) { place_floats_early(dep, worklist); } @@ -1590,7 +1590,7 @@ place_floats_late(ir_node *n, pdeq *worklist) /* We have to determine the final block of this node... except for constants. */ - if ((get_op_pinned(get_irn_op(n)) == op_pin_state_floats) && + if ((get_irn_pinned(n) == op_pin_state_floats) && (get_irn_op(n) != op_Const) && (get_irn_op(n) != op_SymConst)) { ir_node *dca = NULL; /* deepest common ancestor in the -- 2.20.1