aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2003-06-22 16:40:45 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2003-06-22 16:40:45 +0000
commit0e9cbd11b4badbc627791ce6d4dde2849a0183c9 (patch)
tree6ff278543143c7478f4d28ee35f7a5126003280e
parent7fedea1138b18a71c3610ee3c35c482b4d7c8bf3 (diff)
downloadgcc-0e9cbd11b4badbc627791ce6d4dde2849a0183c9.zip
gcc-0e9cbd11b4badbc627791ce6d4dde2849a0183c9.tar.gz
gcc-0e9cbd11b4badbc627791ce6d4dde2849a0183c9.tar.bz2
* expr.c (emit_move_insn_1): Fix a comment typo.
From-SVN: r68341
-rw-r--r--gcc/ChangeLog4
-rw-r--r--gcc/expr.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 859c0b3..75bed25 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,5 +1,9 @@
2003-06-22 Kazu Hirata <kazu@cs.umass.edu>
+ * expr.c (emit_move_insn_1): Fix a comment typo.
+
+2003-06-22 Kazu Hirata <kazu@cs.umass.edu>
+
* doc/invoke.texi: Alphabetize dump options.
2003-06-22 Kazu Hirata <kazu@cs.umass.edu>
diff --git a/gcc/expr.c b/gcc/expr.c
index 6501f87..a2cfdcd 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -3343,8 +3343,8 @@ emit_move_insn_1 (x, y)
int stack = push_operand (x, GET_MODE (x));
#ifdef PUSH_ROUNDING
- /* In case we output to the stack, but the size is smaller machine can
- push exactly, we need to use move instructions. */
+ /* In case we output to the stack, but the size is smaller than the
+ machine can push exactly, we need to use move instructions. */
if (stack
&& (PUSH_ROUNDING (GET_MODE_SIZE (submode))
!= GET_MODE_SIZE (submode)))