expr.c (emit_push_insn): Do not adjust stack pointer when preallocating.

* expr.c (emit_push_insn): Do not adjust stack pointer when
        preallocating.

From-SVN: r33881
This commit is contained in:
Jan Hubicka 2000-05-12 11:51:30 -06:00 committed by Jeff Law
parent 2d7cc2fe08
commit 3ea2292aa0
2 changed files with 6 additions and 1 deletions

View File

@ -1,3 +1,8 @@
Fry May 12 20:03:00 CEST 2000 Jan Hubicka <jh@suse.cz>
* expr.c (emit_push_insn): Do not adjust stack pointer when
preallocating.
Fri May 12 19:03:58 2000 Philippe De Muyter <phdm@macqel.be>
* ggc-simple.c (offsetof): Macro fallback definition moved from here ..

View File

@ -3321,7 +3321,7 @@ emit_push_insn (x, mode, type, size, align, partial, reg, extra,
if (extra && args_addr == 0 && where_pad == stack_direction)
anti_adjust_stack (GEN_INT (extra));
if (alignment_pad)
if (alignment_pad && args_addr == 0)
anti_adjust_stack (alignment_pad);
}