From: Richard Stallman Date: Mon, 26 Oct 1992 06:06:28 +0000 (+0000) Subject: (FUNCTION_EPILOGUE): Fix typos. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9a36bc362783cdfd6c84984f689345b9c5a56f7e;p=gcc.git (FUNCTION_EPILOGUE): Fix typos. From-SVN: r2610 --- diff --git a/gcc/config/m68k/news.h b/gcc/config/m68k/news.h index 707a44caa31..24f6cce9fb2 100644 --- a/gcc/config/m68k/news.h +++ b/gcc/config/m68k/news.h @@ -230,9 +230,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ else if (fsize) \ { \ if (fsize + 4 < 0x8000) \ - asm_fprintf (stream, "\tadd.w #%d,sp\n", fsize + 4); \ + fprintf (FILE, "\tadd.w #%d,sp\n", fsize + 4); \ else \ - asm_fprintf (stream, "\tadd.l #%d,sp\n", fsize + 4); \ + fprintf (FILE, "\tadd.l #%d,sp\n", fsize + 4); \ } \ if (current_function_pops_args) \ fprintf (FILE, "\trtd #%d\n", current_function_pops_args); \