From 4baed42f6d33e74c69063135c2be2e43642d91f4 Mon Sep 17 00:00:00 2001 From: Doug Evans Date: Fri, 17 May 1996 16:20:31 +0000 Subject: [PATCH] * mips/mips.h (ASM_COMMENT_START): Change from "\t\t#" to " #". From-SVN: r11997 --- gcc/config/mips/mips.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/mips/mips.h b/gcc/config/mips/mips.h index 7fa95c6a5a3..4a7f563ecca 100644 --- a/gcc/config/mips/mips.h +++ b/gcc/config/mips/mips.h @@ -3821,11 +3821,11 @@ while (0) #define ASM_OPEN_PAREN "(" #define ASM_CLOSE_PAREN ")" -/* How to start an assembler comment. */ +/* How to start an assembler comment. + The leading space is important (the mips native assembler requires it). */ #ifndef ASM_COMMENT_START -#define ASM_COMMENT_START "\t\t# " +#define ASM_COMMENT_START " #" #endif - /* Macros for mips-tfile.c to encapsulate stabs in ECOFF, and for -- 2.30.2