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