Commit de74274f by Jim Wilson

(ASM_OUTPUT_NEWLINE): Define new macro.

From-SVN: r6422
parent b277ceaf
......@@ -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"
......@@ -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"
......@@ -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"
......@@ -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"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment