aboutsummaryrefslogtreecommitdiff
path: root/gcc/expr.c
diff options
context:
space:
mode:
authorJan Hubicka <jh@suse.cz>2000-05-12 11:51:30 -0600
committerJeff Law <law@gcc.gnu.org>2000-05-12 11:51:30 -0600
commit3ea2292aa011c2fb500ca48212ad69a6c356e239 (patch)
tree1fcbcc4e0772459839da835a94573efb99e641c9 /gcc/expr.c
parent2d7cc2fe08889b35bdeb12134ff5e808337bc2a9 (diff)
downloadgcc-3ea2292aa011c2fb500ca48212ad69a6c356e239.zip
gcc-3ea2292aa011c2fb500ca48212ad69a6c356e239.tar.gz
gcc-3ea2292aa011c2fb500ca48212ad69a6c356e239.tar.bz2
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
Diffstat (limited to 'gcc/expr.c')
-rw-r--r--gcc/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/expr.c b/gcc/expr.c
index 5dace5b..1f91549 100644
--- a/gcc/expr.c
+++ b/gcc/expr.c
@@ -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);
}