diff options
author | Andrew MacLeod <amacleod@cygnus.com> | 1999-01-21 20:50:56 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1999-01-21 20:50:56 +0000 |
commit | 15914757c6d0717225a6d87035cb524fb06c5ac9 (patch) | |
tree | f989d8f194f6cd72b80fc6ab8791014592d14900 /gcc/expr.c | |
parent | c8ab99010f56347af6f77424ffd1d6307dbc7496 (diff) | |
download | gcc-15914757c6d0717225a6d87035cb524fb06c5ac9.zip gcc-15914757c6d0717225a6d87035cb524fb06c5ac9.tar.gz gcc-15914757c6d0717225a6d87035cb524fb06c5ac9.tar.bz2 |
* expr.c (emit_push_insn): Fix Dumb Typo.
From-SVN: r24811
Diffstat (limited to 'gcc/expr.c')
-rw-r--r-- | gcc/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2887,7 +2887,7 @@ emit_push_insn (x, mode, type, size, align, partial, reg, extra, if (args_addr == 0 && GET_CODE (size) == CONST_INT && skip == 0 - && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size) - used, align))) + && (MOVE_BY_PIECES_P ((unsigned) INTVAL (size) - used, align)) /* Here we avoid the case of a structure whose weak alignment forces many pushes of a small amount of data, and such small pushes do rounding that causes trouble. */ |