diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-01-24 22:51:58 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1994-01-24 22:51:58 +0000 |
commit | b9028a54a558e9a153c5d7146bb70476e0cb9828 (patch) | |
tree | 149891dfb1472a6620a2c3ad76e0b83ac7dafc92 /gcc/config/mips/mips-5.h | |
parent | a3f9e1203dbb88cfd4e1ce3ecf74879fc90fbcd5 (diff) | |
download | gcc-b9028a54a558e9a153c5d7146bb70476e0cb9828.tar.gz |
(ASM_OUTPUT_NEWLINE): Define new macro.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6422 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/mips/mips-5.h')
-rw-r--r-- | gcc/config/mips/mips-5.h | 5 |
1 files changed, 5 insertions, 0 deletions
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" |