From 5f663c52fa1bed75bad98fc0d68d7e0da995c3eb Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 11 Feb 2005 11:52:43 +0000 Subject: [PATCH] removed FIRM_EDGES_INPLACE, this is now handled by the preprocessor [r5094] --- ir/ir/irgmod.c | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/ir/ir/irgmod.c b/ir/ir/irgmod.c index 06fb0a643..de99bf832 100644 --- a/ir/ir/irgmod.c +++ b/ir/ir/irgmod.c @@ -55,16 +55,12 @@ exchange (ir_node *old, ir_node *nw) * If new outs are on, we can skip the id node creation and reroute * the edges from the old node to the new directly. */ -#ifdef FIRM_EDGES_INPLACE - if(edges_activated(current_ir_graph)) { + if (edges_activated(current_ir_graph)) { edges_reroute(old, nw, current_ir_graph); } + else { + /* Else, do it the old-fashioned way. */ - else -#endif - - /* Else, do it the old-fashioned way. */ - { ir_graph *irg = get_irn_irg (old); ir_node *block; -- 2.20.1