mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-23 16:19:34 +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>
|
||||
|
||||
* 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
|
||||
|
Loading…
Reference in New Issue
Block a user