diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2006-12-02 02:26:04 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2006-12-02 02:26:04 +0000 |
commit | 2f8e468bf32574acaa21dbb8409b579ff8f16b92 (patch) | |
tree | dd382bd43e9be4352a80ae68890c6ba09ba0cad1 /gcc/fold-const.c | |
parent | 5681c208fa990b5f827b3fc97ff33c076376e44d (diff) | |
download | gcc-2f8e468bf32574acaa21dbb8409b579ff8f16b92.tar.gz |
builtins.c, [...]: Fix comment typos.
* builtins.c, cfgloop.h, cgraph.h, config/arm/arm.c,
config/i386/i386.c, config/i386/i386.h, config/mips/mips.h,
config/rs6000/cell.md, config/rs6000/rs6000.c, config/sh/sh.c,
config/sh/sh4-300.md, config/spu/spu-builtins.def,
config/spu/spu-c.c, config/spu/spu-modes.def,
config/spu/spu.c, config/spu/spu.md,
config/spu/spu_internals.h, config/spu/vmx2spu.h,
fold-const.c, fwprop.c, predict.c, tree-data-ref.h,
tree-flow.h, tree-ssa-loop-manip.c, tree-ssa-loop-niter.c,
tree-ssa-pre.c, tree-vect-analyze.c, tree-vect-transform.c,
tree-vectorizer.c, tree-vrp.c: Fix comment typos. Follow
spelling conventions.
From-SVN: r119442
Diffstat (limited to 'gcc/fold-const.c')
-rw-r--r-- | gcc/fold-const.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/fold-const.c b/gcc/fold-const.c index fce41c2bdb1..93dee15ce28 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -7818,7 +7818,7 @@ maybe_canonicalize_comparison_1 (enum tree_code code, tree type, || TREE_OVERFLOW (cst0)) return NULL_TREE; - /* See if we can reduce the mangitude of the constant in + /* See if we can reduce the magnitude of the constant in arg0 by changing the comparison code. */ if (code0 == INTEGER_CST) { @@ -7899,7 +7899,7 @@ maybe_canonicalize_comparison (enum tree_code code, tree type, return t; /* Try canonicalization by simplifying arg1 using the swapped - comparsion. */ + comparison. */ code = swap_tree_comparison (code); return maybe_canonicalize_comparison_1 (code, type, arg1, arg0); } |