diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2005-11-05 20:24:18 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-11-05 20:24:18 +0000 |
commit | c83eecadfde96f31d483f70c043572cfb24d9575 (patch) | |
tree | 5862299337bcb2adb6751447c1b727ed4555e24f /gcc/tree-vectorizer.c | |
parent | d492addcd36c2fc92388b950b4e1159f7e941edb (diff) | |
download | gcc-c83eecadfde96f31d483f70c043572cfb24d9575.zip gcc-c83eecadfde96f31d483f70c043572cfb24d9575.tar.gz gcc-c83eecadfde96f31d483f70c043572cfb24d9575.tar.bz2 |
c-typeck.c, [...]: Fix comment typos.
* c-typeck.c, config/i386/netware.h, config/m32c/cond.md,
config/ms1/ms1.h, config/rs6000/predicates.md,
config/s390/s390.c, params.def, postreload-gcse.c,
tree-flow-inline.h, tree-ssa-operands.c, tree-vectorizer.c,
tree-vrp.c, tree.c: Fix comment typos.
* doc/invoke.texi: Fix typos.
From-SVN: r106532
Diffstat (limited to 'gcc/tree-vectorizer.c')
-rw-r--r-- | gcc/tree-vectorizer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vectorizer.c b/gcc/tree-vectorizer.c index bc0f11e..d096788 100644 --- a/gcc/tree-vectorizer.c +++ b/gcc/tree-vectorizer.c @@ -1879,7 +1879,7 @@ vect_is_simple_reduction (struct loop *loop, tree phi) /* CHECKME: check for !flag_finite_math_only too? */ if (SCALAR_FLOAT_TYPE_P (type) && !flag_unsafe_math_optimizations) { - /* Changing the order of operations changes the sematics. */ + /* Changing the order of operations changes the semantics. */ if (vect_print_dump_info (REPORT_DETAILS)) { fprintf (vect_dump, "reduction: unsafe fp math optimization: "); @@ -1889,7 +1889,7 @@ vect_is_simple_reduction (struct loop *loop, tree phi) } else if (INTEGRAL_TYPE_P (type) && !TYPE_UNSIGNED (type) && flag_trapv) { - /* Changing the order of operations changes the sematics. */ + /* Changing the order of operations changes the semantics. */ if (vect_print_dump_info (REPORT_DETAILS)) { fprintf (vect_dump, "reduction: unsafe int math optimization: "); |