diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-05 15:24:15 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-05 15:24:15 +0000 |
commit | 912757687975fdabbb85e7f10a96a136347aa43a (patch) | |
tree | db2d4b4b49c75785725db3dc511e5abdabfec0c9 /gcc/tree-ssa-loop-im.c | |
parent | 690a81bd5f175cc0e0d0e63f3228703fd3623e10 (diff) | |
download | gcc-912757687975fdabbb85e7f10a96a136347aa43a.tar.gz |
* c-common.c, cfgexpand.c, cgraphunit.c, defaults.h,
et-forest.c, expr.c, gimplify.c, global.c, gthr-lynx.h,
hard-reg-set.h, modulo-sched.c, optabs.c, postreload-gcse.c,
tree-data-ref.c, tree-flow.h, tree-if-conv.c, tree-inline.c,
tree-sra.c, tree-ssa-loop-im.c, tree-ssa-loop-ivopts.c,
tree-ssa-loop-niter.c, tree-ssa-operands.c,
tree-ssa-operands.h, tree-ssa-propagate.c,
tree-ssa-propagate.h, tree-ssa-threadupdate.c, value-prof.c,
vec.c, vec.h: Fix comment typos. Follow spelling conventions.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87104 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop-im.c')
-rw-r--r-- | gcc/tree-ssa-loop-im.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/tree-ssa-loop-im.c b/gcc/tree-ssa-loop-im.c index e80d8eeeded..d05617db09e 100644 --- a/gcc/tree-ssa-loop-im.c +++ b/gcc/tree-ssa-loop-im.c @@ -206,7 +206,7 @@ movement_possibility (tree stmt) } /* Suppose that operand DEF is used inside the LOOP. Returns the outermost - loop to that we could move the expresion using DEF if it did not have + loop to that we could move the expression using DEF if it did not have other operands, i.e. the outermost loop enclosing LOOP in that the value of DEF is invariant. */ @@ -587,7 +587,7 @@ loop_commit_inserts (void) } /* Hoist the statements in basic block BB out of the loops prescribed by - data stored in LIM_DATA structres associated with each statement. Callback + data stored in LIM_DATA structures associated with each statement. Callback for walk_dominator_tree. */ static void @@ -641,7 +641,7 @@ move_computations_stmt (struct dom_walk_data *dw_data ATTRIBUTE_UNUSED, } /* Hoist the statements out of the loops prescribed by data stored in - LIM_DATA structres associated with each statement.*/ + LIM_DATA structures associated with each statement.*/ static void move_computations (void) @@ -698,7 +698,7 @@ may_move_till (tree ref, tree *index, void *data) return true; } -/* Forces statements definining (invariant) SSA names in expression EXPR to be +/* Forces statements defining (invariant) SSA names in expression EXPR to be moved out of the LOOP. ORIG_LOOP is the loop in that EXPR is used. */ static void @@ -1023,7 +1023,7 @@ rewrite_mem_refs (tree tmp_var, struct mem_ref *mem_refs) } /* Records request for store motion of memory reference REF from LOOP. - MEM_REFS is the list of occurences of the reference REF inside LOOP; + MEM_REFS is the list of occurrences of the reference REF inside LOOP; these references are rewritten by a new temporary variable. Exits from the LOOP are stored in EXITS, there are N_EXITS of them. The initialization of the temporary variable is put to the preheader |