diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-20 11:17:22 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-20 11:17:22 +0000 |
commit | 7a635e9cb084245a896f9d75506fd095b613c4a3 (patch) | |
tree | 91331df04325bb2679babd9f724a756835ba42da /gcc/cfg.c | |
parent | 2c67c2b3205659036e28c2e6518301db1025b0b6 (diff) | |
download | gcc-7a635e9cb084245a896f9d75506fd095b613c4a3.tar.gz |
* cfg.c, tree-ssa-threadupdate.c, tree-vectorizer.c: Fix
comment typos.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87753 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfg.c')
-rw-r--r-- | gcc/cfg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfg.c b/gcc/cfg.c index b5d28c3bed6..c8f1de51ae4 100644 --- a/gcc/cfg.c +++ b/gcc/cfg.c @@ -891,11 +891,11 @@ brief_dump_cfg (FILE *file) /* An edge originally destinating BB of FREQUENCY and COUNT has been proved to leave the block by TAKEN_EDGE. Update profile of BB such that edge E can be - redirected to destiantion of TAKEN_EDGE. + redirected to destination of TAKEN_EDGE. This function may leave the profile inconsistent in the case TAKEN_EDGE frequency or count is believed to be lower than FREQUENCY or COUNT - respectivly. */ + respectively. */ void update_bb_profile_for_threading (basic_block bb, int edge_frequency, gcov_type count, edge taken_edge) |