Commit cbe23927 by Doug Evans

jump.c: (thread_jumps): Value in HARD_FRAME_POINTER_REGNUM is never modified by a call.

* jump.c: (thread_jumps): Value in HARD_FRAME_POINTER_REGNUM is never
modified by a call.

From-SVN: r5459
parent 7b0957a7
......@@ -4021,6 +4021,7 @@ thread_jumps (f, max_reg, verbose)
if (call_used_regs[i] && ! fixed_regs[i]
&& i != STACK_POINTER_REGNUM
&& i != FRAME_POINTER_REGNUM
&& i != HARD_FRAME_POINTER_REGNUM
&& i != ARG_POINTER_REGNUM)
modified_regs[i] = 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