diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2002-12-13 00:17:22 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-12-13 00:17:22 +0000 |
commit | 09da15320b1856ba010101ca5a1c2766d493c1b4 (patch) | |
tree | 3f4977682a21560e2c4d370fc537230aad533512 /gcc/cfglayout.c | |
parent | 7930523de8ea4ce820f4a83b2a87b076b5d0ff37 (diff) | |
download | gcc-09da15320b1856ba010101ca5a1c2766d493c1b4.zip gcc-09da15320b1856ba010101ca5a1c2766d493c1b4.tar.gz gcc-09da15320b1856ba010101ca5a1c2766d493c1b4.tar.bz2 |
c-decl.c: Fix a comment typo.
* c-decl.c: Fix a comment typo.
* cfg.c: Likewise.
* cfgcleanup.c: Likewise.
* cfglayout.c: Likewise.
* cfgrtl.c: Likewise.
* c-typeck.c: Likewise.
* dominance.c: Likewise.
* dwarf2asm.c: Likewise.
* dwarfout.c: Likewise.
* expmed.c: Likewise.
* expr.c: Likewise.
* final.c: Likewise.
* flow.c: Likewise.
* function.c: Likewise.
* gcc.c: Likewise.
* genautomata.c: Likewise.
* integrate.c: Likewise.
* loop.c: Likewise.
* loop.h: Likewise.
* output.h: Likewise.
* profile.c: Likewise.
* ra.h: Likewise.
* reload1.c: Likewise.
* reload.c: Likewise.
* sched-rgn.c: Likewise.
* stmt.c: Likewise.
* tree.h: Likewise.
* vmsdbgout.c: Likewise.
From-SVN: r60085
Diffstat (limited to 'gcc/cfglayout.c')
-rw-r--r-- | gcc/cfglayout.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/cfglayout.c b/gcc/cfglayout.c index 1f3bc97..3214e80 100644 --- a/gcc/cfglayout.c +++ b/gcc/cfglayout.c @@ -708,7 +708,7 @@ cfg_layout_can_duplicate_bb_p (bb) if (bb == EXIT_BLOCK_PTR || bb == ENTRY_BLOCK_PTR) return false; - /* Duplicating fallthru block to exit would require adding an jump + /* Duplicating fallthru block to exit would require adding a jump and splitting the real last BB. */ for (s = bb->succ; s; s = s->succ_next) if (s->dest == EXIT_BLOCK_PTR && s->flags & EDGE_FALLTHRU) @@ -862,7 +862,7 @@ cfg_layout_redirect_edge (e, dest) src->next_bb = old_next_bb; } -/* Create an duplicate of the basic block BB and redirect edge E into it. */ +/* Create a duplicate of the basic block BB and redirect edge E into it. */ basic_block cfg_layout_duplicate_bb (bb, e) |