From: Kazu Hirata Date: Sun, 22 Jun 2003 16:40:45 +0000 (+0000) Subject: * expr.c (emit_move_insn_1): Fix a comment typo. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0e9cbd11b4badbc627791ce6d4dde2849a0183c9;p=gcc.git * expr.c (emit_move_insn_1): Fix a comment typo. From-SVN: r68341 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 859c0b357e4..75bed2545c0 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2003-06-22 Kazu Hirata + + * expr.c (emit_move_insn_1): Fix a comment typo. + 2003-06-22 Kazu Hirata * doc/invoke.texi: Alphabetize dump options. diff --git a/gcc/expr.c b/gcc/expr.c index 6501f873e3d..a2cfdcd3a7d 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)))