diff options
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; |