diff options
author | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-07-07 14:23:57 +0000 |
---|---|---|
committer | sayle <sayle@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-07-07 14:23:57 +0000 |
commit | 2e2fd8fed89bb9dc9703e21770a86af54eb06f94 (patch) | |
tree | 23576e37f688d2a706f1bfea77d9266942017b8d /gcc/ggc-common.c | |
parent | 238ad80e4b5a27ccaa276fa8544b7da0f42c78e2 (diff) | |
download | gcc-2e2fd8fed89bb9dc9703e21770a86af54eb06f94.tar.gz |
* pointer-set.c (pointer_set_destroy): Correct whitespace.
* cfgloopanal.c (dump_graph): Likewise.
* dojump.c (discard_pending_stack_adjust): Likewise.
* fix-header.c (TARGET_EXTRA_INCLUDE, TARGET_EXTRA_PRE_INCLUDES):
Likewise.
* alloc-pool.c (dump_alloc_pool_statistics): Likewise.
* function.c (finalize_block_changes): Likewise.
* gcc-common.c (ggc_free_overhead, dump_gcc_loc_statistics): Likewise.
* tree-ssa-dce.c (clear_control_dependence_bitmap): Likewise.
* rtl.c (dump_rtx_statistics): Likewise.
* tree-ssa-structalias.c (sort_fieldstack, init_alias_heapvars):
Likewise.
* varray.c (dump_varray_statistics): Likewise.
* dfp.c (encode_decimal32, decode_decimal32, encode_decimal64,
decode_decimal64, encode_decimal128, decode_decimal128,
decimal_real_to_decimal): Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@115258 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ggc-common.c')
-rw-r--r-- | gcc/ggc-common.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index 3da248b6e40..fe75320bdb1 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -1,5 +1,5 @@ /* Simple garbage collection for the GNU compiler. - Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005 + Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc. This file is part of GCC. @@ -906,7 +906,8 @@ ggc_prune_overhead_list (void) } /* Notice that the pointer has been freed. */ -void ggc_free_overhead (void *ptr) +void +ggc_free_overhead (void *ptr) { PTR *slot = htab_find_slot_with_hash (ptr_hash, ptr, htab_hash_pointer (ptr), NO_INSERT); @@ -939,7 +940,8 @@ add_statistics (void **slot, void *b) /* Dump per-site memory statistics. */ #endif -void dump_ggc_loc_statistics (void) +void +dump_ggc_loc_statistics (void) { #ifdef GATHER_STATISTICS int nentries = 0; |