aboutsummaryrefslogtreecommitdiff
path: root/gcc/unroll.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2002-09-27 12:48:07 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-09-27 12:48:07 +0000
commit0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70 (patch)
treec2f7682329bf354ca96d9ae19d6a6cfe4312c16a /gcc/unroll.c
parentb9b575e6b5d26806b2d45c1d5c392fa2c2734de2 (diff)
downloadgcc-0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70.zip
gcc-0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70.tar.gz
gcc-0e9e1e0a42eff5ec265470b7e8928cb3b3ad2d70.tar.bz2
LANGUAGES: Follow spelling conventions.
* LANGUAGES: Follow spelling conventions. * rtl.def: Likewise. * sbitmap.c: Likewise. * sched-int.h: Likewise. * sched-rgn.c: Likewise. * sibcall.c: Likewise. * simplify-rtx.c: Likewise. * ssa.c: Likewise. * stab.def: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * target.h: Likewise. * timevar.c: Likewise. * toplev.c: Likewise. * tree-dump.c: Likewise. * tree-inline.c: Likewise. * tree.c: Likewise. * tree.def: Likewise. * tree.h: Likewise. * unroll.c: Likewise. * varasm.c: Likewise. * vmsdbgout.c: Likewise. * treelang/treelang.texi: Likewise. * treelang/treetree.c: Likewise. From-SVN: r57587
Diffstat (limited to 'gcc/unroll.c')
-rw-r--r--gcc/unroll.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/unroll.c b/gcc/unroll.c
index 61d63d8..c1c0059 100644
--- a/gcc/unroll.c
+++ b/gcc/unroll.c
@@ -170,7 +170,7 @@ enum unroll_types
UNROLL_NAIVE
};
-/* Indexed by register number, if non-zero, then it contains a pointer
+/* Indexed by register number, if nonzero, then it contains a pointer
to a struct induction for a DEST_REG giv which has been combined with
one of more address givs. This is needed because whenever such a DEST_REG
giv is modified, we must modify the value of all split address givs
@@ -2482,7 +2482,7 @@ find_splittable_regs (loop, unroll_type, unroll_number)
it is unsafe to split the biv since it may not have the proper
value on loop exit. */
- /* loop_number_exit_count is non-zero if the loop has an exit other than
+ /* loop_number_exit_count is nonzero if the loop has an exit other than
a fall through at the end. */
biv_splittable = 1;
@@ -2507,7 +2507,7 @@ find_splittable_regs (loop, unroll_type, unroll_number)
|| GET_CODE (SET_SRC (tem)) != PLUS)
biv_splittable = 0;
- /* If final value is non-zero, then must emit an instruction which sets
+ /* If final value is nonzero, then must emit an instruction which sets
the value of the biv to the proper value. This is done after
handling all of the givs, since some of them may need to use the
biv's value in their initialization code. */
@@ -2567,7 +2567,7 @@ find_splittable_regs (loop, unroll_type, unroll_number)
result += find_splittable_givs (loop, bl, unroll_type, increment,
unroll_number);
- /* If final value is non-zero, then must emit an instruction which sets
+ /* If final value is nonzero, then must emit an instruction which sets
the value of the biv to the proper value. This is done after
handling all of the givs, since some of them may need to use the
biv's value in their initialization code. */
@@ -2696,7 +2696,7 @@ find_splittable_givs (loop, bl, unroll_type, increment, unroll_number)
/* Should emit insns after the loop if possible, as the biv final value
code below does. */
- /* If the final value is non-zero, and the giv has not been reduced,
+ /* If the final value is nonzero, and the giv has not been reduced,
then must emit an instruction to set the final value. */
if (final_value && !v->new_reg)
{