Commit e5884dac by Richard Kenner

(expand_function_start): If not optimizing, ensure we mark context

display regs as live for the entire function.

From-SVN: r5995
parent a8e2f179
......@@ -4860,6 +4860,12 @@ expand_function_start (subr, parms_have_cleanups)
#endif
last_ptr = copy_to_reg (gen_rtx (MEM, Pmode,
memory_address (Pmode, last_ptr)));
/* If we are not optimizing, ensure that we know that this
piece of context is live over the entire function. */
if (! optimize)
save_expr_regs = gen_rtx (EXPR_LIST, VOIDmode, last_ptr,
save_expr_regs);
}
/* After the display initializations is where the tail-recursion label
......
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