From: Jim Wilson Date: Mon, 24 Jan 1994 22:51:58 +0000 (-0800) Subject: (ASM_OUTPUT_NEWLINE): Define new macro. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=de74274fd25d13ccddd8112e588907116582e2ab;p=gcc.git (ASM_OUTPUT_NEWLINE): Define new macro. From-SVN: r6422 --- diff --git a/gcc/config/mips/bsd-5.h b/gcc/config/mips/bsd-5.h index a757ebdad50..905c15b438c 100644 --- a/gcc/config/mips/bsd-5.h +++ b/gcc/config/mips/bsd-5.h @@ -58,4 +58,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define MD_STARTFILE_PREFIX "/bsd43/usr/lib/cmplrs/cc/" #define MD_EXEC_PREFIX "/bsd43/usr/lib/cmplrs/cc/" +/* Some RISCOS assemblers misassemble \n in a .ascii, + so we use \X0A instead. */ +#define ASM_OUTPUT_NEWLINE(STREAM) \ + fputs ("\\X0A", (STREAM)); + #include "mips/mips.h" diff --git a/gcc/config/mips/mips-5.h b/gcc/config/mips/mips-5.h index c33830eb625..f53d0ad9fb4 100644 --- a/gcc/config/mips/mips-5.h +++ b/gcc/config/mips/mips-5.h @@ -29,4 +29,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define STARTFILE_SPEC "%{pg:gcrt0.o%s}%{!pg:%{p:mcrt0.o%s}%{!p:crt1.o%s crtn.o%s}}" +/* Some RISCOS assemblers misassemble \n in a .ascii, + so we use \X0A instead. */ +#define ASM_OUTPUT_NEWLINE(STREAM) \ + fputs ("\\X0A", (STREAM)); + #include "mips/mips.h" diff --git a/gcc/config/mips/svr3-5.h b/gcc/config/mips/svr3-5.h index 40189965e7c..d36b381d757 100644 --- a/gcc/config/mips/svr3-5.h +++ b/gcc/config/mips/svr3-5.h @@ -80,4 +80,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Generate calls to memcpy, etc., not bcopy, etc. */ #define TARGET_MEM_FUNCTIONS +/* Some RISCOS assemblers misassemble \n in a .ascii, + so we use \X0A instead. */ +#define ASM_OUTPUT_NEWLINE(STREAM) \ + fputs ("\\X0A", (STREAM)); + #include "mips/mips.h" diff --git a/gcc/config/mips/svr4-5.h b/gcc/config/mips/svr4-5.h index 0fa1d825612..f59f79d2de7 100644 --- a/gcc/config/mips/svr4-5.h +++ b/gcc/config/mips/svr4-5.h @@ -79,4 +79,9 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Generate calls to memcpy, etc., not bcopy, etc. */ #define TARGET_MEM_FUNCTIONS +/* Some RISCOS assemblers misassemble \n in a .ascii, + so we use \X0A instead. */ +#define ASM_OUTPUT_NEWLINE(STREAM) \ + fputs ("\\X0A", (STREAM)); + #include "mips/mips.h"