From 003d29a41bee06c430cf1c78fd9a5b2eafeac71c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Christian=20W=C3=BCrdig?= Date: Fri, 11 May 2007 15:31:17 +0000 Subject: [PATCH] BugFix: declare as extern, otherwise linker will create two entities [r13810] --- ir/ana/absgraph.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ana/absgraph.h b/ir/ana/absgraph.h index 12413792d..9b6a7d2e5 100644 --- a/ir/ana/absgraph.h +++ b/ir/ana/absgraph.h @@ -40,7 +40,7 @@ typedef struct _absgraph_t { void (*grow_succs)(void *self, void *node, struct obstack *obst); } absgraph_t; -const absgraph_t absgraph_irg_cfg_succ; -const absgraph_t absgraph_irg_cfg_pred; +extern const absgraph_t absgraph_irg_cfg_succ; +extern const absgraph_t absgraph_irg_cfg_pred; #endif /* FIRM_ANA_ABSGRAPH_H */ -- 2.20.1