diff options
author | Jan van Male <jan.vanmale@fenk.wau.nl> | 2001-06-29 00:46:11 -0400 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2001-06-29 00:46:11 -0400 |
commit | 35d6d8c165c7854f25d274e0c9e948ac1fe9e320 (patch) | |
tree | 278616b54408ac5b83a26472df029c49b8d1f7f3 /gcc/predict.c | |
parent | b02c22542a6d833c5c4902c27832c42de8799e31 (diff) | |
download | gcc-35d6d8c165c7854f25d274e0c9e948ac1fe9e320.zip gcc-35d6d8c165c7854f25d274e0c9e948ac1fe9e320.tar.gz gcc-35d6d8c165c7854f25d274e0c9e948ac1fe9e320.tar.bz2 |
Also, fix formatting problem in previous ChangeLog commit.
2001-06-28 Jan van Male <jan.vanmale@fenk.wau.nl>
* predict.c (dump_prediction): Eliminate fprintf warning.
From-SVN: r43650
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 2bf13b3..8557313 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -188,16 +188,14 @@ dump_prediction (predictor, probability, bb) if (bb->count) { - fprintf (rtl_dump_file, " exec ", - bb->count, e->count, e->count * 100.0 / bb->count); + fprintf (rtl_dump_file, " exec "); fprintf (rtl_dump_file, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) bb->count); - fprintf (rtl_dump_file, " hit ", - e->count, e->count * 100.0 / bb->count); + fprintf (rtl_dump_file, " hit "); fprintf (rtl_dump_file, HOST_WIDEST_INT_PRINT_DEC, (HOST_WIDEST_INT) e->count); fprintf (rtl_dump_file, " (%.1f%%)", - e->count, e->count * 100.0 / bb->count); + e->count * 100.0 / bb->count); } fprintf (rtl_dump_file, "\n"); } |