* tree-cfg.c (dump_cfg_stats): Fix 64-bit format mismatch errors.
authorRichard Henderson <rth@redhat.com>
Fri, 9 Jul 2004 22:31:02 +0000 (15:31 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Fri, 9 Jul 2004 22:31:02 +0000 (15:31 -0700)
From-SVN: r84409

gcc/ChangeLog
gcc/tree-cfg.c

index 1ae7b083dc52d95fd39b9fc0c7145826196fd2d2..f332652290c40e228195a89fe766260e4c36456f 100644 (file)
@@ -1,3 +1,7 @@
+2004-04-09  Richard Henderson  <rth@redhat.com>
+
+       * tree-cfg.c (dump_cfg_stats): Fix 64-bit format mismatch errors.
+
 2004-07-09  Eric Christopher  <echristo@redhat.com>
 
        * config/rs6000/40x.md: Split into two automatons.
index ca51213af4fee62c89b958a37eb731c1752445ce..3c790b4db84823af7ffde1ec0730eb3aecd6d5f6 100644 (file)
@@ -2308,10 +2308,10 @@ dump_cfg_stats (FILE *file)
 {
   static long max_num_merged_labels = 0;
   unsigned long size, total = 0;
-  long n_edges;
+  int n_edges;
   basic_block bb;
   const char * const fmt_str   = "%-30s%-13s%12s\n";
-  const char * const fmt_str_1 = "%-30s%13lu%11lu%c\n";
+  const char * const fmt_str_1 = "%-30s%13d%11lu%c\n";
   const char * const fmt_str_3 = "%-43s%11lu%c\n";
   const char *funcname
     = lang_hooks.decl_printable_name (current_function_decl, 2);
@@ -2326,8 +2326,8 @@ dump_cfg_stats (FILE *file)
 
   size = n_basic_blocks * sizeof (struct basic_block_def);
   total += size;
-  fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks, SCALE (size),
-          LABEL (size));
+  fprintf (file, fmt_str_1, "Basic blocks", n_basic_blocks,
+          SCALE (size), LABEL (size));
 
   n_edges = 0;
   FOR_EACH_BB (bb)