From: Jeff Law Date: Sun, 15 Mar 1998 22:25:50 +0000 (-0700) Subject: mot3300.h (ASM_BYTE_OP): Don't include '\t' in the definition. X-Git-Tag: releases/egcs-1.0.2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3e260314f796b46106da953ce77ace8c8a216b65;p=thirdparty%2Fgcc.git mot3300.h (ASM_BYTE_OP): Don't include '\t' in the definition. * config/m68k/mot3300.h (ASM_BYTE_OP): Don't include '\t' in the definition. (ASM_OUTPUT_ASCII): Prefix ASM_BYTE_OP by one single '\t'. From-SVN: r18609 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 56d78d3a5558..07f88f0d1bc4 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,4 +1,10 @@ -Sun Mar 15 23:17:30 1998 Jeffrey A Law (law@cygnus.com) +Sun Mar 15 23:29:25 1998 Manfred Hollstein + + * config/m68k/mot3300.h (ASM_BYTE_OP): Don't include '\t' in the + definition. + (ASM_OUTPUT_ASCII): Prefix ASM_BYTE_OP by one single '\t'. + +Sun Mar 15 23:29:18 1998 Jeffrey A Law (law@cygnus.com) * m68k.h: Fix mis-applied fix from the mainline branch. diff --git a/gcc/config/m68k/mot3300.h b/gcc/config/m68k/mot3300.h index f7d35847b262..5e99b65a358b 100644 --- a/gcc/config/m68k/mot3300.h +++ b/gcc/config/m68k/mot3300.h @@ -356,7 +356,7 @@ dtors_section () \ #undef ASM_BYTE #define ASM_BYTE ".byte" #undef ASM_BYTE_OP -#define ASM_BYTE_OP "\t.byte" +#define ASM_BYTE_OP ".byte" #else #undef ASM_LONG #define ASM_LONG "long" @@ -367,7 +367,7 @@ dtors_section () \ #undef ASM_BYTE #define ASM_BYTE "byte" #undef ASM_BYTE_OP -#define ASM_BYTE_OP "\tbyte" +#define ASM_BYTE_OP "byte" #endif /* USE_GAS */ /* The sysV68 as doesn't know about double's and float's. */ @@ -476,7 +476,7 @@ do { long l; \ #undef ASM_OUTPUT_ASCII #define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \ do { register int sp = 0, lp = 0; \ - fprintf ((FILE), "%s\t", ASM_BYTE_OP); \ + fprintf ((FILE), "\t%s\t", ASM_BYTE_OP); \ loop: \ if ((PTR)[sp] > ' ' && ! ((PTR)[sp] & 0x80) && (PTR)[sp] != '\\') \ { lp += 3; \