diff options
author | Jan Hubicka <jh@suse.cz> | 2008-09-11 14:48:53 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2008-09-11 12:48:53 +0000 |
commit | cf9757477e367cf9ab4e8dae6489dcd09178033e (patch) | |
tree | 767df63c6acd529c10c6d6c64b416ac9a6eb7808 /gcc/ggc-common.c | |
parent | 936fc9bad2df490917cbb01f27c9eede43f9e153 (diff) | |
download | gcc-cf9757477e367cf9ab4e8dae6489dcd09178033e.zip gcc-cf9757477e367cf9ab4e8dae6489dcd09178033e.tar.gz gcc-cf9757477e367cf9ab4e8dae6489dcd09178033e.tar.bz2 |
ggc-common.c (loc_array): Make static.
* ggc-common.c (loc_array): Make static.
* dce.c (rest_of_handle_ud_dce): Free worklist.
From-SVN: r140286
Diffstat (limited to 'gcc/ggc-common.c')
-rw-r--r-- | gcc/ggc-common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index 8c0e459..747ec4c 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -947,7 +947,7 @@ cmp_statistic (const void *loc1, const void *loc2) } /* Collect array of the descriptors from hashtable. */ -struct loc_descriptor **loc_array; +static struct loc_descriptor **loc_array; static int add_statistics (void **slot, void *b) { |