... to avoid "C++11 requires a space between string literal and macro" warning. Plus fix lines over 80 chars.
2015-05-12 Uros Bizjak <ubiz...@gmail.com> * libgcov-util.c: Add space between string literal and macro name. Tested on x86_64-linux-gnu and committed to mainline SVN. Uros.
Index: ChangeLog =================================================================== --- ChangeLog (revision 223043) +++ ChangeLog (working copy) @@ -1,3 +1,7 @@ +2015-05-12 Uros Bizjak <ubiz...@gmail.com> + + * libgcov-util.c: Add space between string literal and macro name. + 2015-05-06 Sandra Loosemore <san...@codesourcery.com> Chris Jones <chr...@nvidia.com> Joshua Conner <jcon...@nvidia.com> Index: libgcov-util.c =================================================================== --- libgcov-util.c (revision 223043) +++ libgcov-util.c (working copy) @@ -879,7 +879,7 @@ 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 @@ 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; }