summaryrefslogtreecommitdiff
path: root/gcc/profile.c
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-21 05:06:55 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2001-08-21 05:06:55 +0000
commit42938542aa5068c3fcabd6cfcebc823a05490be5 (patch)
treee1073b878d494374c012557dd7468233e87a75d0 /gcc/profile.c
parenta6a1b9be4068c09c536e826c5192465b7c24f05b (diff)
downloadgcc-42938542aa5068c3fcabd6cfcebc823a05490be5.tar.gz
* profile.c (compute_branch_probabilities): Remove extra new-line
in error message. * flow.c (verify_flow_info): Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45069 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/profile.c')
-rw-r--r--gcc/profile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/profile.c b/gcc/profile.c
index 86a91a0a193..941e16e76b6 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;
}