From 520f11f00df7b451356c422adc7c863277785d2d Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Fri, 11 Feb 2005 16:17:48 +0000 Subject: [PATCH] fixed FIRM_EDGES_INPLACE condition [r5102] --- ir/ir/irgraph_t.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ir/irgraph_t.h b/ir/ir/irgraph_t.h index f77428a09..42c7689e3 100644 --- a/ir/ir/irgraph_t.h +++ b/ir/ir/irgraph_t.h @@ -130,8 +130,8 @@ struct ir_graph { readable. */ #endif -#ifdef FIRM_EDGES_INPLACE - irg_edge_info_t edge_info; +#if FIRM_EDGES_INPLACE + irg_edge_info_t edge_info; /**< edge info for automatic outs */ #endif }; -- 2.20.1