Commit ea0f9a85 by Jim Wilson Committed by Jim Wilson

Fix i960 build failure with unrecognizable insn.

	* function.c (expand_function_end): Pass arg_pointer_save_area to
	validize_mem before using it.  Emit code into a sequence.

From-SVN: r24872
parent aa9bc2fc
Tue Jan 26 13:31:38 1999 Jim Wilson <wilson@cygnus.com>
* function.c (expand_function_end): Pass arg_pointer_save_area to
validize_mem before using it. Emit code into a sequence.
Tue Jan 26 13:41:38 1999 David Edelsohn <edelsohn@mhpcc.edu>
* rs6000.md (doz + set cr and or + set cr patterns): Add missing
......
......@@ -5947,8 +5947,15 @@ expand_function_end (filename, line, end_bindings)
/* Save the argument pointer if a save area was made for it. */
if (arg_pointer_save_area)
{
rtx x = gen_move_insn (arg_pointer_save_area, virtual_incoming_args_rtx);
emit_insn_before (x, tail_recursion_reentry);
/* arg_pointer_save_area may not be a valid memory address, so we
have to check it and fix it if necessary. */
rtx seq;
start_sequence ();
emit_move_insn (validize_mem (arg_pointer_save_area),
virtual_incoming_args_rtx);
seq = gen_sequence ();
end_sequence ();
emit_insn_before (seq, tail_recursion_reentry);
}
/* Initialize any trampolines required by this function. */
......
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