diff options
author | Andreas Jaeger <aj@gcc.gnu.org> | 2001-08-21 07:06:55 +0200 |
---|---|---|
committer | Andreas Jaeger <aj@gcc.gnu.org> | 2001-08-21 07:06:55 +0200 |
commit | bb1a503c19ca810ff94db1674cbe607f903d1ffc (patch) | |
tree | e1073b878d494374c012557dd7468233e87a75d0 /gcc/profile.c | |
parent | 006844a3928510acdacc3bded90136175c85d47f (diff) | |
download | gcc-bb1a503c19ca810ff94db1674cbe607f903d1ffc.zip gcc-bb1a503c19ca810ff94db1674cbe607f903d1ffc.tar.gz gcc-bb1a503c19ca810ff94db1674cbe607f903d1ffc.tar.bz2 |
profile.c (compute_branch_probabilities): Remove extra new-line in error message.
* profile.c (compute_branch_probabilities): Remove extra new-line
in error message.
* flow.c (verify_flow_info): Likewise.
From-SVN: r45069
Diffstat (limited to 'gcc/profile.c')
-rw-r--r-- | gcc/profile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/profile.c b/gcc/profile.c index 86a91a0..941e16e 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -428,7 +428,7 @@ compute_branch_probabilities () e->probability = (e->count * REG_BR_PROB_BASE + total / 2) / total; if (e->probability < 0 || e->probability > REG_BR_PROB_BASE) { - error ("Corrupted profile info: prob for %d-%d thought to be %d\n", + error ("Corrupted profile info: prob for %d-%d thought to be %d", e->src->index, e->dest->index, e->probability); e->probability = REG_BR_PROB_BASE / 2; } |