summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Law <law@gcc.gnu.org>1998-03-15 15:25:50 -0700
committerJeff Law <law@gcc.gnu.org>1998-03-15 15:25:50 -0700
commit3e260314f796b46106da953ce77ace8c8a216b65 (patch)
tree85c02108872da1b8a89f4a84e3ec76bf5bba9f33
parentecfe148ef97f55b5d202a78e66370cb6b01afe91 (diff)
downloadgcc-3e260314f796b46106da953ce77ace8c8a216b65.tar.gz
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
-rw-r--r--gcc/ChangeLog8
-rw-r--r--gcc/config/m68k/mot3300.h6
2 files changed, 10 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 56d78d3a555..07f88f0d1bc 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 <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.
diff --git a/gcc/config/m68k/mot3300.h b/gcc/config/m68k/mot3300.h
index f7d35847b26..5e99b65a358 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; \