From: Michael Beck Date: Fri, 11 Feb 2005 11:45:53 +0000 (+0000) Subject: added a #if FIRM_EDGES_INPLACE X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=55d70af4e03b1a9171be082be53286721f035fd0;p=libfirm added a #if FIRM_EDGES_INPLACE [r5093] --- diff --git a/ir/ir/iredges.c b/ir/ir/iredges.c index 7dfd6fe00..b4c58fbf2 100644 --- a/ir/ir/iredges.c +++ b/ir/ir/iredges.c @@ -14,6 +14,8 @@ static firm_dbg_module_t *dbg; +#if FIRM_EDGES_INPLACE + #define TIMES37(x) (((x) << 5) + ((x) << 2) + (x)) #define get_irn_out_list_head(irn) (&get_irn_out_info(irn)->outs) @@ -315,3 +317,5 @@ int (get_edge_src_pos)(const ir_edge_t *edge) { return _get_edge_src_pos(edge); } + +#endif /* FIRM_EDGES_INPLACE */