From 4486418e176c6c8fc4c3f2ecb12f130406c46e89 Mon Sep 17 00:00:00 2001 From: hubicka Date: Sun, 1 Apr 2007 19:48:01 +0000 Subject: * emit-rtl.c (emit_insn_before_setloc): Do not ICE when asked to emit before very first instruction. * ggc-page.c (ggc_print_statistics): Fix formatting string to avoid waring on 64bit hosts. * bitmap.h: Fix typo in bitmap_head_def. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@123408 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/ggc-page.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/ggc-page.c') diff --git a/gcc/ggc-page.c b/gcc/ggc-page.c index 01251f606e0..5caa5c666a3 100644 --- a/gcc/ggc-page.c +++ b/gcc/ggc-page.c @@ -2017,10 +2017,10 @@ 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 %7ul: %10lld\n", + fprintf (stderr, "Total Overhead page size %7lu: %10lld\n", (unsigned long) OBJECT_SIZE (i), G.stats.total_overhead_per_order[i]); - fprintf (stderr, "Total Allocated page size %7ul: %10lld\n", + fprintf (stderr, "Total Allocated page size %7lu: %10lld\n", (unsigned long) OBJECT_SIZE (i), G.stats.total_allocated_per_order[i]); } -- cgit v1.2.1