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

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

From-SVN: r66874
This commit is contained in:
Kaveh R. Ghazi 2003-05-16 18:25:39 +00:00 committed by Kaveh Ghazi
parent 804a0655c8
commit c8f4b20ff1
2 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,8 @@
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

View File

@ -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