diff options
Diffstat (limited to 'gcc/ipa-profile.c')
-rw-r--r-- | gcc/ipa-profile.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/gcc/ipa-profile.c b/gcc/ipa-profile.c index 71bd61b..339f38e 100644 --- a/gcc/ipa-profile.c +++ b/gcc/ipa-profile.c @@ -163,8 +163,8 @@ dump_histogram (FILE *file, vec<histogram_entry *> histogram) { cumulated_time += histogram[i]->count * histogram[i]->time; cumulated_size += histogram[i]->size; - fprintf (file, " "HOST_WIDEST_INT_PRINT_DEC": time:%i (%2.2f) size:%i (%2.2f)\n", - (HOST_WIDEST_INT) histogram[i]->count, + fprintf (file, " %"PRId64": time:%i (%2.2f) size:%i (%2.2f)\n", + (int64_t) histogram[i]->count, histogram[i]->time, cumulated_time * 100.0 / overall_time, histogram[i]->size, @@ -516,8 +516,8 @@ ipa_profile (void) { gcov_type min, cumulated_time = 0, cumulated_size = 0; - fprintf (dump_file, "Overall time: "HOST_WIDEST_INT_PRINT_DEC"\n", - (HOST_WIDEST_INT)overall_time); + fprintf (dump_file, "Overall time: %"PRId64"\n", + (int64_t)overall_time); min = get_hot_bb_threshold (); for (i = 0; i < (int)histogram.length () && histogram[i]->count >= min; i++) @@ -525,9 +525,9 @@ ipa_profile (void) cumulated_time += histogram[i]->count * histogram[i]->time; cumulated_size += histogram[i]->size; } - fprintf (dump_file, "GCOV min count: "HOST_WIDEST_INT_PRINT_DEC + fprintf (dump_file, "GCOV min count: %"PRId64 " Time:%3.2f%% Size:%3.2f%%\n", - (HOST_WIDEST_INT)min, + (int64_t)min, cumulated_time * 100.0 / overall_time, cumulated_size * 100.0 / overall_size); } @@ -551,9 +551,9 @@ ipa_profile (void) cumulated_time += histogram[i]->count * histogram[i]->time; cumulated_size += histogram[i]->size; } - fprintf (dump_file, "Determined min count: "HOST_WIDEST_INT_PRINT_DEC + fprintf (dump_file, "Determined min count: %"PRId64 " Time:%3.2f%% Size:%3.2f%%\n", - (HOST_WIDEST_INT)threshold, + (int64_t)threshold, cumulated_time * 100.0 / overall_time, cumulated_size * 100.0 / overall_size); } |