]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - gcc/cfg.c
bitmap.c, [...]: Add space between string literal and macro name.
[thirdparty/gcc.git] / gcc / cfg.c
index 30745001b9eabf8fea4c27e1bb4539256bc1f064..cdcc01c9a1cf0d5b5a0fce63cea6a39ac93fe746 100644 (file)
--- a/gcc/cfg.c
+++ b/gcc/cfg.c
@@ -508,7 +508,7 @@ dump_edge_info (FILE *file, edge e, int flags, int do_succ)
   if (e->count && do_details)
     {
       fputs (" count:", file);
-      fprintf (file, "%"PRId64, e->count);
+      fprintf (file, "%" PRId64, e->count);
     }
 
   if (e->flags && do_details)
@@ -756,7 +756,7 @@ dump_bb_info (FILE *outf, basic_block bb, int indent, int flags,
       if (flags & TDF_DETAILS)
        {
          struct function *fun = DECL_STRUCT_FUNCTION (current_function_decl);
-         fprintf (outf, ", count " "%"PRId64,
+         fprintf (outf, ", count " "%" PRId64,
                   (int64_t) bb->count);
          fprintf (outf, ", freq %i", bb->frequency);
          if (maybe_hot_bb_p (fun, bb))