diff options
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 165cc4e..55a645d 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -739,12 +739,10 @@ dump_prediction (FILE *file, enum br_predictor predictor, int probability, if (bb->count) { - fprintf (file, " exec "); - fprintf (file, HOST_WIDEST_INT_PRINT_DEC, bb->count); + fprintf (file, " exec %"PRId64, bb->count); if (e) { - fprintf (file, " hit "); - fprintf (file, HOST_WIDEST_INT_PRINT_DEC, e->count); + fprintf (file, " hit %"PRId64, e->count); fprintf (file, " (%.1f%%)", e->count * 100.0 / bb->count); } } |