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:
parent
2d7cc2fe08
commit
3ea2292aa0
2 changed files with 6 additions and 1 deletions
|
@ -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 ..
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue