From c046a33ef59e5ff97d868b22cec60f44f5e8eff6 Mon Sep 17 00:00:00 2001 From: Michael Beck Date: Wed, 22 Aug 2007 09:38:14 +0000 Subject: [PATCH] debug handle must be static [r15578] --- ir/ana/structure.c | 2 +- ir/opt/ifconv.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ir/ana/structure.c b/ir/ana/structure.c index a0017a79a..26b1a2528 100644 --- a/ir/ana/structure.c +++ b/ir/ana/structure.c @@ -74,7 +74,7 @@ union ir_reg_or_blk { }; /* The debug handle. */ -DEBUG_ONLY(firm_dbg_module_t *dbg;) +DEBUG_ONLY(static firm_dbg_module_t *dbg;) /** * Returns the link of a region. diff --git a/ir/opt/ifconv.c b/ir/opt/ifconv.c index c98428fe7..b61edfebe 100644 --- a/ir/opt/ifconv.c +++ b/ir/opt/ifconv.c @@ -46,7 +46,7 @@ #include "irdump.h" #include "debug.h" -DEBUG_ONLY(firm_dbg_module_t *dbg); +DEBUG_ONLY(static firm_dbg_module_t *dbg); /** allow every Psi to be created. */ static int default_allow_ifconv(ir_node *sel, ir_node* phi_list, int i, int j) -- 2.20.1