From: Andreas Jaeger Date: Thu, 19 Jun 2003 12:02:24 +0000 (+0200) Subject: * bt-load.c (migrate_btr_defs): Correct printf arguments. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=551dc3602f1b8f12a734e70a20bf4ddd586e007a;p=gcc.git * bt-load.c (migrate_btr_defs): Correct printf arguments. From-SVN: r68192 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 71f071a058f..f29bbdf8205 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ 2003-06-19 Andreas Jaeger + * bt-load.c (migrate_btr_defs): Correct printf arguments. + * protoize.c: Fix breakage from last patch. 2003-06-19 J"orn Rennecke diff --git a/gcc/bt-load.c b/gcc/bt-load.c index 790fdfd8856..e585bc79f33 100644 --- a/gcc/bt-load.c +++ b/gcc/bt-load.c @@ -1299,8 +1299,9 @@ migrate_btr_defs (enum reg_class btr_class, int allow_callee_save) { basic_block bb = BASIC_BLOCK (i); fprintf(rtl_dump_file, - "Basic block %d: count = %lld loop-depth = %d idom = %d\n", - i, bb->count, bb->loop_depth, + "Basic block %d: count = " HOST_WIDEST_INT_PRINT_DEC + " loop-depth = %d idom = %d\n", + i, (HOST_WIDEST_INT) bb->count, bb->loop_depth, get_immediate_dominator (dom, bb)->index); } }