Commit a46f0964 by DJ Delorie Committed by DJ Delorie

mep.c (mep_expand_prologue): Fix frame pointer calculations.

* config/mep/mep.c (mep_expand_prologue): Fix frame pointer
calculations.

From-SVN: r149612
parent 25e14484
2009-07-13 DJ Delorie <dj@redhat.com>
* config/mep/mep.c (mep_expand_prologue): Fix frame pointer
calculations.
2009-07-13 Ghassan Shobaki <ghassan.shobaki@amd.com>
* haifa-sched.c
......
......@@ -2894,7 +2894,12 @@ mep_expand_prologue (void)
}
if (frame_pointer_needed)
add_constant (FP_REGNO, SP_REGNO, sp_offset - frame_size, 1);
{
/* We've already adjusted down by sp_offset. Total $sp change
is reg_save_size + frame_size. We want a net change here of
just reg_save_size. */
add_constant (FP_REGNO, SP_REGNO, sp_offset - reg_save_size, 1);
}
add_constant (SP_REGNO, SP_REGNO, sp_offset-(reg_save_size+frame_size), 1);
......
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