diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-08 01:38:27 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-03-08 01:38:27 +0000 |
commit | 037845e55755f9d46e07be6df6f59eeeb305206b (patch) | |
tree | ac6eaf9720b1013a5b3dc4f6abec3d7ed67daa1c /gcc/cfgloopanal.c | |
parent | 6604994e4331f38664f163ff4b71379658e0bdc5 (diff) | |
download | gcc-037845e55755f9d46e07be6df6f59eeeb305206b.tar.gz |
* calls.c: Fix comment formatting.
* cfgloopanal.c: Likewise.
* cfgloopmanip.c: Likewise.
* combine.c: Likewise.
* dwarf2out.c: Likewise.
* ggc-common.c: Likewise.
* langhooks.c: Likewise.
* loop-unroll.c: Likewise.
* loop.c: Likewise.
* ra-build.c: Likewise.
* sbitmap.c: Likewise.
* toplev.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@63966 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cfgloopanal.c')
-rw-r--r-- | gcc/cfgloopanal.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cfgloopanal.c b/gcc/cfgloopanal.c index 5e00d43259f..0843a006acb 100644 --- a/gcc/cfgloopanal.c +++ b/gcc/cfgloopanal.c @@ -214,7 +214,7 @@ invariant_rtx_wrto_regs_p_helper (expr, invariant_regs) } } -/* Checks that EXPR is invariant provided that INVARIANT_REGS are invariant. */ +/* Checks that EXPR is invariant provided that INVARIANT_REGS are invariant. */ static bool invariant_rtx_wrto_regs_p (expr, invariant_regs) rtx expr; @@ -278,7 +278,7 @@ simple_condition_p (loop, condition, invariant_regs, desc) return true; } - /* Check the other operand. */ + /* Check the other operand. */ if (!invariant_rtx_wrto_regs_p (op1, invariant_regs)) return false; if (!REG_P (op0)) @@ -494,7 +494,7 @@ constant_iterations (desc, niter, may_be_zero) These cases needs to be either cared by copying the loop test in the front of loop or keeping the test in first iteration of loop. - When INIT/LIM are set, they are used instead of var/lim of DESC. */ + When INIT/LIM are set, they are used instead of var/lim of DESC. */ rtx count_loop_iterations (desc, init, lim) struct loop_desc *desc; @@ -578,7 +578,7 @@ count_loop_iterations (desc, init, lim) if (stride != const1_rtx) { /* Number of iterations is now (EXP + STRIDE - 1 / STRIDE), - but we need to take care for overflows. */ + but we need to take care for overflows. */ mod = simplify_gen_binary (UMOD, GET_MODE (desc->var), exp, stride); @@ -719,7 +719,7 @@ simple_loop_exit_p (loops, loop, exit_edge, invariant_regs, single_set_regs, des desc->var_alts = variable_initial_values (e, desc->var); desc->lim_alts = variable_initial_values (e, desc->lim); - /* Number of iterations. */ + /* Number of iterations. */ if (!count_loop_iterations (desc, NULL, NULL)) return false; desc->const_iter = |