From 40ef0937543cae4a9016224d5315b72626c58d13 Mon Sep 17 00:00:00 2001 From: Jim Wilson Date: Wed, 17 Aug 1994 10:10:29 -0700 Subject: [PATCH] (ASM_OUTPUT_ASCII): Edit comment. From-SVN: r7936 --- gcc/config/mips/iris4.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/config/mips/iris4.h b/gcc/config/mips/iris4.h index 3369a8ffe6f..735b15e9876 100644 --- a/gcc/config/mips/iris4.h +++ b/gcc/config/mips/iris4.h @@ -32,8 +32,8 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #define LIB_SPEC \ "%{!p:%{!pg:%{!static:%{!g*:-lc_s}}}}%{p:libprof1.a%s}%{pg:libprof1.a%s} -lc crtn.o%s" -/* Assembler is said to have trouble with .ascii with escape chars. - The quickest way to avoid the problem is not to use .ascii. */ +/* Some assemblers have a bug that causes backslash escaped chars in .ascii + to be misassembled, so we just completely avoid it. */ #undef ASM_OUTPUT_ASCII #define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \ do { \ -- 2.30.2