From: kazu Date: Tue, 8 Mar 2005 16:17:05 +0000 (+0000) Subject: * cfg.c (rbi_pool): Make it static. X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b4ee1ef1f2dfd3614293fc422e15668dce7968b0;p=thirdparty%2Fgcc.git * cfg.c (rbi_pool): Make it static. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@96109 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c156568dee5f..2810628d5207 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -3,6 +3,8 @@ * c-typeck.c (constructor_stack, constructor_range_stack, initializer_stack): Make them static. + * cfg.c (rbi_pool): Make it static. + 2005-03-08 Julian Brown * config/elfos.h (MAKE_DECL_ONE_ONLY): Redefined to stop DECL_WEAK diff --git a/gcc/cfg.c b/gcc/cfg.c index d180f3e8907e..c4f06642a8ad 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -88,7 +88,7 @@ varray_type basic_block_info; basic_block ENTRY_BLOCK_PTR, EXIT_BLOCK_PTR; /* Memory alloc pool for bb member rbi. */ -alloc_pool rbi_pool; +static alloc_pool rbi_pool; void debug_flow_info (void); static void free_edge (edge);