diff options
author | Jim Wilson <wilson@gcc.gnu.org> | 1994-08-14 16:09:56 -0700 |
---|---|---|
committer | Jim Wilson <wilson@gcc.gnu.org> | 1994-08-14 16:09:56 -0700 |
commit | 87fc3db7132e6199bac0e699194ccac8902ebc0a (patch) | |
tree | 2d76491b4b53bd784c44fdad6e8462869f4fcf61 /gcc | |
parent | 1827f5ca56cb87e6ce9cef89d024896743c44faa (diff) | |
download | gcc-87fc3db7132e6199bac0e699194ccac8902ebc0a.zip gcc-87fc3db7132e6199bac0e699194ccac8902ebc0a.tar.gz gcc-87fc3db7132e6199bac0e699194ccac8902ebc0a.tar.bz2 |
(ASM_OUTPUT_NEWLINE): Delete.
(ASM_OUTPUT_ASCII): Don't use ASM_OUTPUT_NEWLINE.
From-SVN: r7924
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/mips/mips.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 1fe867b..6b80d9c 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3454,14 +3454,6 @@ do { \ #define ASM_OUTPUT_SKIP(STREAM,SIZE) \ fprintf (STREAM, "\t.space\t%u\n", (SIZE)) - -/* Some RISCOS assemblers don't correctly handle \n in a .ascii directive, - so we have separated out this part so that it can be machine dependent. */ -#ifndef ASM_OUTPUT_NEWLINE -#define ASM_OUTPUT_NEWLINE(STREAM) \ - fputs ("\\n", (STREAM)); -#endif - /* This is how to output a string. */ #define ASM_OUTPUT_ASCII(STREAM, STRING, LEN) \ do { \ @@ -3482,7 +3474,7 @@ do { \ break; \ \ case TARGET_NEWLINE: \ - ASM_OUTPUT_NEWLINE (STREAM); \ + fputs ("\\n", (STREAM)); \ if (i+1 < len \ && (((c = string[i+1]) >= '\040' && c <= '~') \ || c == TARGET_TAB)) \ |