Commit 3e555c7d by Alexandre Oliva Committed by Alexandre Oliva

calls.c (combine_pending_stack_adjustment_and_call): Don't adjust stack when…

calls.c (combine_pending_stack_adjustment_and_call): Don't adjust stack when unadjusted_alignment ends up as zero.

* calls.c (combine_pending_stack_adjustment_and_call): Don't
adjust stack when unadjusted_alignment ends up as zero.

From-SVN: r37008
parent 99bdaa68
2000-10-22 Alexandre Oliva <aoliva@redhat.com>
* calls.c (combine_pending_stack_adjustment_and_call): Don't
adjust stack when unadjusted_alignment ends up as zero.
2000-10-22 Joseph S. Myers <jsm28@cam.ac.uk>
* fixinc/genfixes: Remove EGCS reference.
......
......@@ -1929,7 +1929,7 @@ combine_pending_stack_adjustment_and_call (unadjusted_args_size,
after the arguments are pushed. */
if (preferred_unit_stack_boundary > 1)
{
if (unadjusted_alignment >= 0)
if (unadjusted_alignment > 0)
adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
else
adjustment += unadjusted_alignment;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment