Commit 3f12a2e0 by Gunther Nikl Committed by Bernardo Innocenti

m68k.c (m68k_output_function_epilogue): Add missing argument to asm_fprintf statement.

	* config/m68k/m68k.c (m68k_output_function_epilogue): Add missing
	argument to asm_fprintf statement.

From-SVN: r72656
parent 99ceae26
2003-10-18 Gunther Nikl <gni@gecko.de>
* config/m68k/m68k.c (m68k_output_function_epilogue): Add missing
argument to asm_fprintf statement.
2003-10-18 Fariborz Jahanian <fjahanian@apple.com>
* rs6000.md: Separate TARGET_POWERPC64 patterns for TARGET_64BIT or TARGET_32BIT.
......
......@@ -868,7 +868,8 @@ m68k_output_function_epilogue (FILE *stream, HOST_WIDE_INT size ATTRIBUTE_UNUSED
#else
asm_fprintf (stream, "\tmovel %s@(-%wd,%Ra1:l),%s\n",
reg_names[FRAME_POINTER_REGNUM],
offset);
offset,
reg_names[i]);
#endif
}
else if (restore_from_sp)
......
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