diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ggc-common.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 015ec36..01d6da8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2007-11-30 Jan Hubicka <jh@suse.cz> + + * ggc-common.c (dump_ggc_loc_statistics): Reset ggc_force_collect + flag. + 2007-11-30 Seongbae Park <seongbae.park@gmail.com> PR rtl-optimization/34171 diff --git a/gcc/ggc-common.c b/gcc/ggc-common.c index ac7c842..974f2f9 100644 --- a/gcc/ggc-common.c +++ b/gcc/ggc-common.c @@ -1018,5 +1018,6 @@ dump_ggc_loc_statistics (bool final ATTRIBUTE_UNUSED) fprintf (stderr, "%-48s %10s %10s %10s %10s %10s\n", "source location", "Garbage", "Freed", "Leak", "Overhead", "Times"); fprintf (stderr, "-------------------------------------------------------\n"); + ggc_force_collect = false; #endif } |