Commit 3e1dec29 by Nick Clifton Committed by Nick Clifton

(arc_output_function_epilogue): Remove prescan parameter from calls to

final_scan_insn.

From-SVN: r98315
parent df3a97a8
2005-04-18 Nick Clifton <nickc@redhat.com> 2005-04-18 Nick Clifton <nickc@redhat.com>
* config/arc/arc.c (arc_output_function_epilogue): Remove prescan
parameter from calls to final_scan_insn.
* config.gcc (m68hc12): Use the m68hc11.opt file for target * config.gcc (m68hc12): Use the m68hc11.opt file for target
specific options. specific options.
(v850e, v850e1): Use the v850.opt file for target specific (v850e, v850e1): Use the v850.opt file for target specific
......
...@@ -1347,7 +1347,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size) ...@@ -1347,7 +1347,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size)
/* ??? If stack intactness is important, always emit now. */ /* ??? If stack intactness is important, always emit now. */
if (MUST_SAVE_RETURN_ADDR && epilogue_delay != NULL_RTX) if (MUST_SAVE_RETURN_ADDR && epilogue_delay != NULL_RTX)
{ {
final_scan_insn (XEXP (epilogue_delay, 0), file, 1, 0, 1, NULL); final_scan_insn (XEXP (epilogue_delay, 0), file, 1, 1, NULL);
epilogue_delay = NULL_RTX; epilogue_delay = NULL_RTX;
} }
...@@ -1379,8 +1379,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size) ...@@ -1379,8 +1379,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size)
{ {
if (epilogue_delay) if (epilogue_delay)
{ {
final_scan_insn (XEXP (epilogue_delay, 0), file, 1, 0, 1, final_scan_insn (XEXP (epilogue_delay, 0), file, 1, 1, NULL);
NULL);
} }
} }
...@@ -1405,7 +1404,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size) ...@@ -1405,7 +1404,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size)
abort (); abort ();
if (restored < size) if (restored < size)
abort (); abort ();
final_scan_insn (XEXP (epilogue_delay, 0), file, 1, 0, 1, NULL); final_scan_insn (XEXP (epilogue_delay, 0), file, 1, 1, NULL);
} }
else if (frame_pointer_needed && !fp_restored_p) else if (frame_pointer_needed && !fp_restored_p)
{ {
......
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