diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2004-09-25 14:48:03 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2004-09-25 14:48:03 +0000 |
commit | 601d18c61627998700b6e267110e61464f562e8f (patch) | |
tree | 1319ad49c71320e4ad984377b305456f7452cc3e /gcc | |
parent | ea4b78487cb4fa983c3bfa1f921c3b04f2fded93 (diff) | |
download | gcc-601d18c61627998700b6e267110e61464f562e8f.zip gcc-601d18c61627998700b6e267110e61464f562e8f.tar.gz gcc-601d18c61627998700b6e267110e61464f562e8f.tar.bz2 |
* tree-vectorizer.c: Fix a comment typo.
From-SVN: r88103
Diffstat (limited to 'gcc')
-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 f850303..4d57068 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 b158278..c98d704 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; |