diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-26 11:47:53 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-26 11:47:53 +0000 |
commit | 223fd470e4ddc6bbf5415f1587581d306448a8bb (patch) | |
tree | afba0dd307489ef13e896679e8e125ccedbc2f42 /gcc/profile.c | |
parent | a59824bb9fa450de7be79e73553d726338ed2669 (diff) | |
download | gcc-223fd470e4ddc6bbf5415f1587581d306448a8bb.tar.gz |
* profile.c: Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88125 138bc75d-0d04-0410-961f-82ee72b054a4
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 39d0493c6dd..d7e6f58104d 100644 --- a/gcc/profile.c +++ b/gcc/profile.c @@ -569,7 +569,7 @@ compute_branch_probabilities (void) BRANCH_EDGE (bb)->probability = prob; FALLTHRU_EDGE (bb)->probability = REG_BR_PROB_BASE - prob; } - /* As a last resolt, distribute the probabilities evenly. + /* As a last resort, distribute the probabilities evenly. Use simple heuristics that if there are normal edges, give all abnormals frequency of 0, otherwise distribute the frequency over abnormals (this is the case of noreturn |