mot3300.h (ASM_BYTE_OP): Don't include '\t' in the definition.
authorManfred Hollstein <manfred@lts.sel.alcatel.de>
Sun, 21 Dec 1997 14:48:50 +0000 (14:48 +0000)
committerJeff Law <law@gcc.gnu.org>
Sun, 21 Dec 1997 14:48:50 +0000 (07:48 -0700)
        * 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: r17166

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

index b1717fcd18c3a23eef2594d5404571357735188d..517b380023411fc0e3ebc7edd71dcf70fbe9be54 100644 (file)
@@ -1,3 +1,9 @@
+Sun Dec 21 15:51:10 1997  Manfred Hollstein  <manfred@lts.sel.alcatel.de>
+
+       * 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 Dec 21 13:58:39 1997  Jeffrey A Law  (law@cygnus.com)
 
        * Makefile.in (FPBIT_FUNCS, DPBIT_FUNCS): Define.
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;                                               \