From: Kazu Hirata Date: Tue, 8 Mar 2005 16:17:05 +0000 (+0000) Subject: * cfg.c (rbi_pool): Make it static. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=06c8f57b44c63b29d34b6921f812e20c1abfc697;p=gcc.git * cfg.c (rbi_pool): Make it static. From-SVN: r96109 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index c156568dee5..2810628d520 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 d180f3e8907..c4f06642a8a 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);