Commit c8f4b20f by Kaveh R. Ghazi Committed by Kaveh Ghazi

m68k.c (m68k_output_function_epilogue): Fix format specifier warnings.

	* m68k.c (m68k_output_function_epilogue): Fix format specifier
	warnings.

From-SVN: r66874
parent 804a0655
2003-05-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* m68k.c (m68k_output_function_epilogue): Fix format specifier
warnings.
* stormy16-protos.h (xs_hi_general_operand,
xs_hi_nonmemory_operand): Prototype.
* stormy16.c (xstormy16_output_shift): Fix format specifier
......
......@@ -1042,12 +1042,14 @@ m68k_output_function_epilogue (stream, size)
else
{
#ifdef MOTOROLA
fprintf (stream, "\tfpmovd -%d(%s), %s\n",
fprintf (stream, "\tfpmovd -"HOST_WIDE_INT_PRINT_DEC
"(%s), %s\n",
fpoffset + fsize,
reg_names[FRAME_POINTER_REGNUM],
reg_names[regno]);
#else
fprintf (stream, "\tfpmoved %s@(-%d), %s\n",
fprintf (stream, "\tfpmoved %s@(-"HOST_WIDE_INT_PRINT_DEC
"), %s\n",
reg_names[FRAME_POINTER_REGNUM],
fpoffset + fsize, reg_names[regno]);
#endif
......
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