diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-01-23 15:05:49 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-01-23 15:05:49 +0000 |
commit | 35fd3193deafc09568065a6ebec64470e790c6f8 (patch) | |
tree | a47662875339514cf8b46f25d1fe13a255cec8c2 /gcc/expr.c | |
parent | e7dc5b4f224051483b5df3bb38bd0c2f1b1147f1 (diff) | |
download | gcc-35fd3193deafc09568065a6ebec64470e790c6f8.zip gcc-35fd3193deafc09568065a6ebec64470e790c6f8.tar.gz gcc-35fd3193deafc09568065a6ebec64470e790c6f8.tar.bz2 |
alias.c, [...]: Fix comment typos.
* alias.c, c-common.h, c-incpath.c, c-incpath.h, expr.c,
fold-const.c, gimplify.c, params.h, tree-data-ref.c,
tree-if-conv.c, tree-nested.c, tree-outof-ssa.c,
tree-ssa-dom.c, tree-vectorizer.c, tree.def, config/darwin.c,
config/freebsd-spec.h, config/arm/arm.h,
config/h8300/h8300.md, config/i386/i386.md,
config/i386/predicates.md, config/i386/sse.md,
config/ia64/ia64.c, config/ip2k/ip2k.c, config/s390/s390.c,
config/vax/vax.md: Fix comment typos. Follow spelling
conventions.
From-SVN: r94112
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -2732,7 +2732,7 @@ emit_move_change_mode (enum machine_mode new_mode, } else { - /* Note that we do want simplify_subreg's behaviour of validating + /* Note that we do want simplify_subreg's behavior of validating that the new mode is ok for a hard register. If we were to use simplify_gen_subreg, we would create the subreg, but would probably run into the target not being able to implement it. */ @@ -2877,7 +2877,7 @@ emit_move_complex (enum machine_mode mode, rtx x, rtx y) if (push_operand (x, mode)) return emit_move_complex_push (mode, x, y); - /* For memory to memory moves, optimial behaviour can be had with the + /* For memory to memory moves, optimal behavior can be had with the existing block move logic. */ if (MEM_P (x) && MEM_P (y)) { |