aboutsummaryrefslogtreecommitdiff
path: root/gcc/loop-unroll.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2004-10-22 17:05:11 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2004-10-22 17:05:11 +0000
commit471854f82a8ac6adc65c32232877b1f1fb0e82d0 (patch)
tree78237ea08ce69e2e4f29b80e8bf73c2c708305a4 /gcc/loop-unroll.c
parent969def55395b4bb4f544419b64294257a68a154b (diff)
downloadgcc-471854f82a8ac6adc65c32232877b1f1fb0e82d0.zip
gcc-471854f82a8ac6adc65c32232877b1f1fb0e82d0.tar.gz
gcc-471854f82a8ac6adc65c32232877b1f1fb0e82d0.tar.bz2
alias.c, [...]: Fix comment formatting.
* alias.c, basic-block.h, cgraphunit.c, combine.c, domwalk.h, final.c, gengtype.c, genpreds.c, ggc-page.c, insn-notes.def, lambda-code.c, loop-unroll.c, modulo-sched.c, pointer-set.c, pretty-print.c, ra-colorize.c, sbitmap.c, tree-complex.c, tree-data-ref.c, tree-dfa.c, tree-inline.c, tree-into-ssa.c, tree-scalar-evolution.c, tree-ssa-dom.c, tree-ssa-loop-manip.c, tree-ssa-loop-niter.c, tree-ssa-phiopt.c, tree-ssa-pre.c, tree-ssa-threadupdate.c, tree-vectorizer.c, vec.h: Fix comment formatting. From-SVN: r89453
Diffstat (limited to 'gcc/loop-unroll.c')
-rw-r--r--gcc/loop-unroll.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/loop-unroll.c b/gcc/loop-unroll.c
index 6c8d181..6b61814 100644
--- a/gcc/loop-unroll.c
+++ b/gcc/loop-unroll.c
@@ -89,7 +89,7 @@ struct iv_to_split
struct var_to_expand
{
rtx insn; /* The insn in that the variable expansion occurs. */
- rtx reg; /* The accumulator which is expanded. */
+ rtx reg; /* The accumulator which is expanded. */
varray_type var_expansions; /* The copies of the accumulator which is expanded. */
enum rtx_code op; /* The type of the accumulation - addition, subtraction
or multiplication. */
@@ -1453,7 +1453,7 @@ ve_info_hash (const void *ves)
}
/* Return true if IVTS1 and IVTS2 (which are really both of type
- "var_to_expand *") refer to the same instruction. */
+ "var_to_expand *") refer to the same instruction. */
static int
ve_info_eq (const void *ivts1, const void *ivts2)
@@ -1464,7 +1464,7 @@ ve_info_eq (const void *ivts1, const void *ivts2)
return i1->insn == i2->insn;
}
-/* Returns true if REG is referenced in one insn in LOOP. */
+/* Returns true if REG is referenced in one insn in LOOP. */
bool
referenced_in_one_insn_in_loop_p (struct loop *loop, rtx reg)