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/cfganal.c | |
parent | 592bf28c9096a01cf9576951123cb248d4869803 (diff) | |
download | gcc-eaec9b3d7ed15d4d07e0091a361e52c73d2170b3.tar.gz |
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/cfganal.c')
-rw-r--r-- | gcc/cfganal.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/cfganal.c b/gcc/cfganal.c index 7dd51e6c6cc..679a6e67fda 100644 --- a/gcc/cfganal.c +++ b/gcc/cfganal.c @@ -210,7 +210,7 @@ need_fake_edge_p (insn) /* Add fake edges to the function exit for any non constant and non noreturn calls, volatile inline assembly in the bitmap of blocks specified by - BLOCKS or to the whole CFG if BLOCKS is zero. Return the nuber of blocks + BLOCKS or to the whole CFG if BLOCKS is zero. Return the number of blocks that were split. The goal is to expose cases in which entering a basic block does not imply @@ -226,7 +226,7 @@ flow_call_edges_add (blocks) basic_block *bbs; bool check_last_block = false; - /* Map bb indicies into basic block pointers since split_block + /* Map bb indices into basic block pointers since split_block will renumber the basic blocks. */ bbs = xmalloc (n_basic_blocks * sizeof (*bbs)); @@ -288,7 +288,7 @@ flow_call_edges_add (blocks) { edge e; - /* The above condition should be enought to verify that there is + /* The above condition should be enough to verify that there is no edge to the exit block in CFG already. Calling make_edge in such case would make us to mark that edge as fake and remove it later. */ @@ -338,7 +338,7 @@ find_unreachable_blocks () BASIC_BLOCK (i)->flags &= ~BB_REACHABLE; /* Add our starting points to the worklist. Almost always there will - be only one. It isn't inconcievable that we might one day directly + be only one. It isn't inconceivable that we might one day directly support Fortran alternate entry points. */ for (e = ENTRY_BLOCK_PTR->succ; e; e = e->succ_next) |