diff options
author | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-22 02:03:17 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-09-22 02:03:17 +0000 |
commit | da7d8304097f7ee1fb0e484b692acd38abc406fb (patch) | |
tree | 46c3473e2a4ca056cf463861491452bb0f47b6a9 /gcc/cfgloop.c | |
parent | 330cc6c7b82eb339ca4af2f7fd10918bb705f69d (diff) | |
download | gcc-da7d8304097f7ee1fb0e484b692acd38abc406fb.zip gcc-da7d8304097f7ee1fb0e484b692acd38abc406fb.tar.gz gcc-da7d8304097f7ee1fb0e484b692acd38abc406fb.tar.bz2 |
ChangeLog: Follow spelling conventions.
* ChangeLog: Follow spelling conventions.
* ChangeLog.0: Likewise.
* ChangeLog.1: Likewise.
* ChangeLog.2: Likewise.
* ChangeLog.3: Likewise.
* ChangeLog.4: Likewise.
* ChangeLog.5: Likewise.
* ChangeLog.6: Likewise.
* FSFChangeLog.10: Likewise.
* FSFChangeLog.11: Likewise.
* alias.c: Likewise.
* basic-block.h: Likewise.
* c-aux-info.c: Likewise.
* c-common.c: Likewise.
* c-common.h: Likewise.
* c-decl.c: Likewise.
* c-format.c: Likewise.
* c-semantics.c: Likewise.
* c-typeck.c: Likewise.
* calls.c: Likewise.
* cfganal.c: Likewise.
* cfgloop.c: Likewise.
* collect2.c: Likewise.
* combine.c: Likewise.
* conflict.c: Likewise.
* cppexp.c: Likewise.
* cppfiles.c: Likewise.
* cpphash.h: Likewise.
* cppinit.c: Likewise.
* cpplex.c: Likewise.
* cpplib.c: Likewise.
* cpplib.h: Likewise.
* cppmacro.c: Likewise.
* cse.c: Likewise.
From-SVN: r57398
Diffstat (limited to 'gcc/cfgloop.c')
-rw-r--r-- | gcc/cfgloop.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/cfgloop.c b/gcc/cfgloop.c index 42a403d..0a2829f 100644 --- a/gcc/cfgloop.c +++ b/gcc/cfgloop.c @@ -90,7 +90,7 @@ flow_loops_cfg_dump (loops, file) } } -/* Return non-zero if the nodes of LOOP are a subset of OUTER. */ +/* Return nonzero if the nodes of LOOP are a subset of OUTER. */ bool flow_loop_nested_p (outer, loop) @@ -949,7 +949,7 @@ flow_loops_update (loops, flags) return flow_loops_find (loops, flags); } -/* Return non-zero if basic block BB belongs to LOOP. */ +/* Return nonzero if basic block BB belongs to LOOP. */ bool flow_bb_inside_loop_p (loop, bb) const struct loop *loop; @@ -964,7 +964,7 @@ flow_bb_inside_loop_p (loop, bb) return loop == source_loop || flow_loop_nested_p (loop, source_loop); } -/* Return non-zero if edge E enters header of LOOP from outside of LOOP. */ +/* Return nonzero if edge E enters header of LOOP from outside of LOOP. */ bool flow_loop_outside_edge_p (loop, e) |