* bt-load.c (migrate_btr_defs): Correct printf arguments.
authorAndreas Jaeger <aj@suse.de>
Thu, 19 Jun 2003 12:02:24 +0000 (14:02 +0200)
committerAndreas Jaeger <aj@gcc.gnu.org>
Thu, 19 Jun 2003 12:02:24 +0000 (14:02 +0200)
From-SVN: r68192

gcc/ChangeLog
gcc/bt-load.c

index 71f071a058fd38eb79644db34ee791ce4d2159fb..f29bbdf820588460148b910470ffa10d713777eb 100644 (file)
@@ -1,5 +1,7 @@
 2003-06-19  Andreas Jaeger  <aj@suse.de>
 
+       * bt-load.c (migrate_btr_defs): Correct printf arguments.
+
        * protoize.c: Fix breakage from last patch.
 
 2003-06-19  J"orn Rennecke <joern.rennecke@superh.com>
index 790fdfd88560e06a89f41055bf04e0878d63b93d..e585bc79f33984598bf57d4b3b87e9479906496a 100644 (file)
@@ -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);
        }
     }