From b18a7b614f09e400d358981359c324688e3a982c Mon Sep 17 00:00:00 2001 From: Richard Stallman Date: Sat, 5 Sep 1992 06:40:27 +0000 Subject: [PATCH] (ASM_OUTPUT_OPCODE): Defined. From-SVN: r2056 --- gcc/config/m68k/news.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/gcc/config/m68k/news.h b/gcc/config/m68k/news.h index 1102a805733..c7790719548 100644 --- a/gcc/config/m68k/news.h +++ b/gcc/config/m68k/news.h @@ -246,6 +246,17 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define ASM_OUTPUT_SKIP(FILE,SIZE) \ fprintf (FILE, "\t.space %u\n", (SIZE)) +/* The NEWS assembler complains about fmove.d; see if it likes fmove.x. */ +#define ASM_OUTPUT_OPCODE(FILE, STRING) \ +{ \ + if (!strncmp (STRING, "fmove.d", 7) \ + && CONSTANT_P (operands[1])) \ + { \ + fprintf (FILE, "fmove.x"); \ + STRING += 7; \ + } \ +} + /* Store in OUTPUT a string (made with alloca) containing an assembler-name for a local static variable named NAME. LABELNO is an integer which is different for each call. */ -- 2.30.2