diff options
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/expr.c | 4 |
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> @@ -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))) |