diff options
author | Kazu Hirata <kazu@hxi.com> | 2001-08-17 21:23:12 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2001-08-17 21:23:12 +0000 |
commit | 2d76cb1aba961fe2dc84fd3b1dad04181affd103 (patch) | |
tree | d04df8e015f11f7c3f1a689524aaa53d9d41c76a /gcc/ssa-ccp.c | |
parent | 171262081c9cd444023acbd55ef265e9cffcd47b (diff) | |
download | gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.zip gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.gz gcc-2d76cb1aba961fe2dc84fd3b1dad04181affd103.tar.bz2 |
sbitmap.c: Fix comment formatting.
* sbitmap.c: Fix comment formatting.
* sched-deps.c: Likewise.
* sibcall.c: Likewise.
* simplify-rtx.c: Likewise.
* ssa.c: Likewise.
* ssa-ccp.c: Likewise.
* stor-layout.c: Likewise.
* timevar.c: Likewise.
* toplev.c: Likewise.
* unwind-dw2.c: Likewise.
* unwind-dw2-fde.c: Likewise.
* varasm.c: Likewise.
From-SVN: r44983
Diffstat (limited to 'gcc/ssa-ccp.c')
-rw-r--r-- | gcc/ssa-ccp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ssa-ccp.c b/gcc/ssa-ccp.c index 1c16357..0815f75 100644 --- a/gcc/ssa-ccp.c +++ b/gcc/ssa-ccp.c @@ -673,7 +673,7 @@ examine_flow_edges (void) /* If we haven't looked at the next block, and it has a single successor, add it onto the worklist. This is because if we only have one successor, we know it gets executed, - so we don't have to wait for cprop to tell us. */ + so we don't have to wait for cprop to tell us. */ if (succ_edge != NULL && succ_edge->succ_next == NULL && !TEST_BIT (executable_edges, |