Commit 11c50c5e by Doug Evans

* explow.c: (copy_all_regs): Don't copy HARD_FRAME_POINTER_REGNUM.

From-SVN: r5454
parent ac6f08b0
......@@ -304,7 +304,11 @@ copy_all_regs (x)
{
if (GET_CODE (x) == REG)
{
if (REGNO (x) != FRAME_POINTER_REGNUM)
if (REGNO (x) != FRAME_POINTER_REGNUM
#if HARD_FRAME_POINTER_REGNUM != FRAME_POINTER_REGNUM
&& REGNO (x) != HARD_FRAME_POINTER_REGNUM
#endif
)
x = copy_to_reg (x);
}
else if (GET_CODE (x) == MEM)
......
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