diff options
author | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-28 10:03:49 +0000 |
---|---|---|
committer | rguenth <rguenth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2006-11-28 10:03:49 +0000 |
commit | 310615899626b73c22a7a234e3e5add92ae624ec (patch) | |
tree | b57e01849ffd7edc177d76457b1c2913f54d8719 | |
parent | ae900a6770b764dfe08192d95124e08e27512f7d (diff) | |
download | gcc-310615899626b73c22a7a234e3e5add92ae624ec.tar.gz |
2006-11-28 Richard Guenther <rguenther@suse.de>
* ggc-page.c (ggc_print_statistics): Use %ul and a cast to
unsigned long for printing OBJECT_SIZE.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@119280 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/ggc-page.c | 10 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 896826d2d1f..9bc59081a3d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2006-11-28 Richard Guenther <rguenther@suse.de> + + * ggc-page.c (ggc_print_statistics): Use %ul and a cast to + unsigned long for printing OBJECT_SIZE. + 2006-11-27 Steven Bosscher <steven@gcc.gnu.org> * alias.c (init_alias_analysis): Remove simplification loop diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c index 5d880339d5a..01251f606e0 100644 --- a/gcc/ggc-page.c +++ b/gcc/ggc-page.c @@ -2017,10 +2017,12 @@ ggc_print_statistics (void) for (i = 0; i < NUM_ORDERS; i++) if (G.stats.total_allocated_per_order[i]) { - fprintf (stderr, "Total Overhead page size %7d: %10lld\n", - OBJECT_SIZE (i), G.stats.total_overhead_per_order[i]); - fprintf (stderr, "Total Allocated page size %7d: %10lld\n", - OBJECT_SIZE (i), G.stats.total_allocated_per_order[i]); + fprintf (stderr, "Total Overhead page size %7ul: %10lld\n", + (unsigned long) OBJECT_SIZE (i), + G.stats.total_overhead_per_order[i]); + fprintf (stderr, "Total Allocated page size %7ul: %10lld\n", + (unsigned long) OBJECT_SIZE (i), + G.stats.total_allocated_per_order[i]); } } #endif |