mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-01-11 11:35:02 +08:00
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:
parent
804a0655c8
commit
c8f4b20ff1
@ -1,5 +1,8 @@
|
|||||||
2003-05-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
|
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,
|
* stormy16-protos.h (xs_hi_general_operand,
|
||||||
xs_hi_nonmemory_operand): Prototype.
|
xs_hi_nonmemory_operand): Prototype.
|
||||||
* stormy16.c (xstormy16_output_shift): Fix format specifier
|
* stormy16.c (xstormy16_output_shift): Fix format specifier
|
||||||
|
@ -1042,12 +1042,14 @@ m68k_output_function_epilogue (stream, size)
|
|||||||
else
|
else
|
||||||
{
|
{
|
||||||
#ifdef MOTOROLA
|
#ifdef MOTOROLA
|
||||||
fprintf (stream, "\tfpmovd -%d(%s), %s\n",
|
fprintf (stream, "\tfpmovd -"HOST_WIDE_INT_PRINT_DEC
|
||||||
|
"(%s), %s\n",
|
||||||
fpoffset + fsize,
|
fpoffset + fsize,
|
||||||
reg_names[FRAME_POINTER_REGNUM],
|
reg_names[FRAME_POINTER_REGNUM],
|
||||||
reg_names[regno]);
|
reg_names[regno]);
|
||||||
#else
|
#else
|
||||||
fprintf (stream, "\tfpmoved %s@(-%d), %s\n",
|
fprintf (stream, "\tfpmoved %s@(-"HOST_WIDE_INT_PRINT_DEC
|
||||||
|
"), %s\n",
|
||||||
reg_names[FRAME_POINTER_REGNUM],
|
reg_names[FRAME_POINTER_REGNUM],
|
||||||
fpoffset + fsize, reg_names[regno]);
|
fpoffset + fsize, reg_names[regno]);
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user