Commit 884b74f0 by Andreas Schwab Committed by Andreas Schwab

m68k.c (m68k_output_function_epilogue): Fix format string.

	* config/m68k/m68k.c (m68k_output_function_epilogue): Fix format
	string.  Whitespace and comment fixup.

From-SVN: r115968
parent f970c857
2006-08-06 Andreas Schwab <schwab@suse.de>
* config/m68k/m68k.c (m68k_output_function_epilogue): Fix format
string. Whitespace and comment fixup.
2006-08-05 Volker Reichelt <reichelt@igpm.rwth-aachen.de> 2006-08-05 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
PR c/28502 PR c/28502
......
...@@ -1006,15 +1006,15 @@ m68k_output_function_epilogue (FILE *stream, ...@@ -1006,15 +1006,15 @@ m68k_output_function_epilogue (FILE *stream,
{ {
int offset; int offset;
/* stack already has registers in it. Find the offset from /* Stack already has registers in it. Find the offset from
the bottom of stack to where the FP registers go */ the bottom of stack to where the FP registers go. */
if (current_frame.reg_no <= 2) if (current_frame.reg_no <= 2)
offset = 0; offset = 0;
else else
offset = current_frame.reg_no * 4; offset = current_frame.reg_no * 4;
if (offset) if (offset)
asm_fprintf (stream, asm_fprintf (stream,
"\tfmovem %Rsp@(%wd), %I0x%x\n", "\tfmovem %Rsp@(%d), %I0x%x\n",
offset, current_frame.fpu_rev_mask); offset, current_frame.fpu_rev_mask);
else else
asm_fprintf (stream, asm_fprintf (stream,
......
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