diff options
author | Joseph Myers <jsm28@gcc.gnu.org> | 2001-11-11 11:25:28 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2001-11-11 11:25:28 +0000 |
commit | eaec9b3d7ed15d4d07e0091a361e52c73d2170b3 (patch) | |
tree | b852443590ce1b94b516d895ae6e1e58523886b8 /gcc/predict.c | |
parent | 592bf28c9096a01cf9576951123cb248d4869803 (diff) | |
download | gcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.zip gcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.tar.gz gcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.tar.bz2 |
ChangeLog.2, [...]: Fix spelling errors.
* ChangeLog.2, ChangeLog.3, ChangeLog.4, ChangeLog.5, ChangeLog,
cfg.c, cfganal.c, cfgcleanup.c, cfglayout.c, cfgloop.c, cfgrtl.c,
collect2.c, combine.c, config.in, configure, configure.in,
conflict.c, dwarf2out.c, dwarfout.c, except.c, final.c, flow.c,
genattrtab.c, ggc-page.c, jump.c, lcm.c, predict.c, reg-stack.c,
reload1.c, rtlanal.c, sched-rgn.c, toplev.c, unwind-dw2-fde.h: Fix
spelling errors.
From-SVN: r46928
Diffstat (limited to 'gcc/predict.c')
-rw-r--r-- | gcc/predict.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/predict.c b/gcc/predict.c index 4c32ac0..3bfa204 100644 --- a/gcc/predict.c +++ b/gcc/predict.c @@ -368,7 +368,7 @@ estimate_probability (loops_info) rtx cond, earliest; edge e; - /* If block has no sucessor, predict all possible paths to + /* If block has no successor, predict all possible paths to it as improbable, as the block contains a call to a noreturn function and thus can be executed only once. */ if (bb->succ == NULL && !found_noreturn) @@ -609,7 +609,7 @@ typedef struct block_info_def /* True if block needs to be visited in prop_freqency. */ int tovisit:1; - /* Number of predecesors we need to visit first. */ + /* Number of predecessors we need to visit first. */ int npredecesors; } *block_info; @@ -639,7 +639,7 @@ propagate_freq (head) basic_block nextbb; int n; - /* For each basic block we need to visit count number of his predecesors + /* For each basic block we need to visit count number of his predecessors we need to visit first. */ for (n = 0; n < n_basic_blocks; n++) { @@ -800,7 +800,7 @@ expensive_function_p (threshold) if (threshold > BB_FREQ_MAX) abort (); - /* Frequencies are out of range. This eighter means that function contains + /* Frequencies are out of range. This either means that function contains internal loop executing more than BB_FREQ_MAX times or profile feedback is available and function has not been executed at all. */ if (ENTRY_BLOCK_PTR->frequency == 0) |