diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-03-30 15:22:39 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-03-30 15:22:39 +0000 |
commit | 2228adb2765400dbc32c2f5f820d69da5cef40b8 (patch) | |
tree | 57d9a137390e1aefaf6e98e9ea201f90048ebd40 | |
parent | 5d0f90e56f8d4f3b83c24c9736cbc0498efd940d (diff) | |
download | gcc-2228adb2765400dbc32c2f5f820d69da5cef40b8.zip gcc-2228adb2765400dbc32c2f5f820d69da5cef40b8.tar.gz gcc-2228adb2765400dbc32c2f5f820d69da5cef40b8.tar.bz2 |
* tree-vectorizer.c: Fix comment typos.
From-SVN: r97258
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/tree-vectorizer.c | 6 |
2 files changed, 7 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b33491d..8591b39 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2005-03-30 Kazu Hirata <kazu@cs.umass.edu> + + * tree-vectorizer.c: Fix comment typos. + 2005-03-30 Sebastian Pop <pop@cri.ensmp.fr> * tree-scalar-evolution.c (instantiate_parameters_1): Return diff --git a/gcc/tree-vectorizer.c b/gcc/tree-vectorizer.c index 2f1d421..be4d816 100644 --- a/gcc/tree-vectorizer.c +++ b/gcc/tree-vectorizer.c @@ -807,11 +807,11 @@ slpeel_update_phi_nodes_for_guard2 (edge guard_edge, struct loop *loop, /* 3.1. Find the relevant names that need an exit-phi in GUARD_BB, i.e. names for which slpeel_update_phi_nodes_for_guard1 had not already - created a phi node. This is the case for names that are used out - side the loop (and therefore need an exit phi) but are not updated + created a phi node. This is the case for names that are used outside + the loop (and therefore need an exit phi) but are not updated across loop iterations (and therefore don't have a loop-header-phi). - slpeel_update_phi_nodes_for_guard1 is responssible for creating + slpeel_update_phi_nodes_for_guard1 is responsible for creating loop-exit phis in GUARD_BB for names that have a loop-header-phi. When such a phi is created we also record the new name in SSA_NAME_AUX. If this new name exists, then guard_arg was set to this new name |