]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
mot3300.h (ASM_BYTE_OP): Don't include '\t' in the definition.
authorJeff Law <law@gcc.gnu.org>
Sun, 15 Mar 1998 22:25:50 +0000 (15:25 -0700)
committerJeff Law <law@gcc.gnu.org>
Sun, 15 Mar 1998 22:25:50 +0000 (15:25 -0700)
        * 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

gcc/ChangeLog
gcc/config/m68k/mot3300.h

index 56d78d3a555865942dd1eab1aaa4589a52bfdf79..07f88f0d1bc45f5f37d6ecabcfd538b088eeecf1 100644 (file)
@@ -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  <manfred@s-direktnet.de>
+
+       * 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.
 
index f7d35847b2624e50004a69d4f1b91e9ef783dc5d..5e99b65a358b8804d5e38be9a0c6e1b6c2c897c1 100644 (file)
@@ -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;                                               \