libgcov-util.c: Add space between string literal and macro name.
authorUros Bizjak <ubizjak@gmail.com>
Tue, 12 May 2015 14:40:49 +0000 (16:40 +0200)
committerUros Bizjak <uros@gcc.gnu.org>
Tue, 12 May 2015 14:40:49 +0000 (16:40 +0200)
* libgcov-util.c: Add space between string literal and macro name.

From-SVN: r223073

libgcc/ChangeLog
libgcc/libgcov-util.c

index a3f3962a8d3c9b6a0722e0fbdd5eecd780c153c3..1b53c4d7cc62e4b1d87902ad84e2b2e34e1d1e12 100644 (file)
@@ -1,3 +1,7 @@
+2015-05-12  Uros Bizjak  <ubizjak@gmail.com>
+
+       * libgcov-util.c: Add space between string literal and macro name.
+
 2015-05-06  Sandra Loosemore  <sandra@codesourcery.com>
            Chris Jones  <chrisj@nvidia.com>
            Joshua Conner  <jconner@nvidia.com>
index d76c2eb4858a928ed4adcdf361fdfef8b21f7024..f59f4a2ef78711794d7e8cd92f0f483fd6978cba 100644 (file)
@@ -879,7 +879,7 @@ gcov_profile_normalize (struct gcov_info *profile, gcov_type max_val)
 
   scale_factor = (float)max_val / curr_max_val;
   if (verbose)
-    fnotice (stdout, "max_val is %"PRId64"\n", curr_max_val);
+    fnotice (stdout, "max_val is %" PRId64 "\n", curr_max_val);
 
   return gcov_profile_scale (profile, scale_factor, 0, 0);
 }
@@ -1374,17 +1374,19 @@ calculate_overlap (struct gcov_info *gcov_list1,
   printf ("  Statistics:\n"
           "                    profile1_#     profile2_#       overlap_#\n");
   printf ("    gcda files:  %12u\t%12u\t%12u\n", gcda_files[0], gcda_files[1],
-                                          gcda_files[0]-unique_gcda_files[0]);
+         gcda_files[0]-unique_gcda_files[0]);
   printf ("  unique files:  %12u\t%12u\n", unique_gcda_files[0],
-                                        unique_gcda_files[1]);
+         unique_gcda_files[1]);
   printf ("     hot files:  %12u\t%12u\t%12u\n", hot_gcda_files[0],
-                                            hot_gcda_files[1], both_hot_cnt);
+         hot_gcda_files[1], both_hot_cnt);
   printf ("    cold files:  %12u\t%12u\t%12u\n", cold_gcda_files[0],
-                                            cold_gcda_files[1], both_cold_cnt);
+         cold_gcda_files[1], both_cold_cnt);
   printf ("    zero files:  %12u\t%12u\t%12u\n", zero_gcda_files[0],
-                                            zero_gcda_files[1], both_zero_cnt);
-  printf ("       sum_all:  %12"PRId64"\t%12"PRId64"\n", p1_sum_all, p2_sum_all);
-  printf ("       run_max:  %12"PRId64"\t%12"PRId64"\n", p1_run_max, p2_run_max);
+         zero_gcda_files[1], both_zero_cnt);
+  printf ("       sum_all:  %12" PRId64 "\t%12" PRId64 "\n",
+         p1_sum_all, p2_sum_all);
+  printf ("       run_max:  %12" PRId64 "\t%12" PRId64 "\n",
+         p1_run_max, p2_run_max);
 
   return prg_val;
 }