diff options
| author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-25 14:48:03 +0000 |
|---|---|---|
| committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-25 14:48:03 +0000 |
| commit | a6aab6cdfd9a9e1b9504ac562cc545ac83d858cb (patch) | |
| tree | 1319ad49c71320e4ad984377b305456f7452cc3e | |
| parent | 778ac06acb14495e68242bc91ccc67bee4953db4 (diff) | |
| download | ppe42-gcc-a6aab6cdfd9a9e1b9504ac562cc545ac83d858cb.tar.gz ppe42-gcc-a6aab6cdfd9a9e1b9504ac562cc545ac83d858cb.zip | |
* tree-vectorizer.c: Fix a comment typo.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@88103 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/ChangeLog | 4 | ||||
| -rw-r--r-- | gcc/tree-vectorizer.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f8503036037..4d5706875f4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2004-09-25 Kazu Hirata <kazu@cs.umass.edu> + * tree-vectorizer.c: Fix a comment typo. + +2004-09-25 Kazu Hirata <kazu@cs.umass.edu> + * c-typeck.c, defaults.h, dwarf.h, dwarf2out.c, fold-const.c, gthr-dce.h, gthr-posix.h, gthr-solaris.h, gthr-win32.h, lambda-code.c, lambda-mat.c, libgcc2.c, stmt.c, diff --git a/gcc/tree-vectorizer.c b/gcc/tree-vectorizer.c index b158278d0fd..c98d7046b8d 100644 --- a/gcc/tree-vectorizer.c +++ b/gcc/tree-vectorizer.c @@ -1598,7 +1598,7 @@ vectorizable_load (tree stmt, block_stmt_iterator *bsi, tree *vec_stmt) software_pipeline_loads_p = true; else if (!targetm.vectorize.misaligned_mem_ok (mode)) { - /* Possibly unaligned access, and can't sofware pipeline the loads */ + /* Possibly unaligned access, and can't software pipeline the loads */ if (vect_debug_details (loop)) fprintf (dump_file, "Arbitrary load not supported."); return false; |

