summaryrefslogtreecommitdiff
path: root/gcc/config/m68k/amix.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/config/m68k/amix.h')
-rw-r--r--gcc/config/m68k/amix.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/m68k/amix.h b/gcc/config/m68k/amix.h
index 84b1b55535b..7707be12dcb 100644
--- a/gcc/config/m68k/amix.h
+++ b/gcc/config/m68k/amix.h
@@ -1,7 +1,7 @@
/* Definitions of target machine for GNU compiler.
Commodore Amiga A3000UX version.
- Copyright (C) 1991, 1993 Free Software Foundation, Inc.
+ Copyright (C) 1991, 1993, 2000 Free Software Foundation, Inc.
This file is part of GNU CC.
@@ -55,7 +55,7 @@ Boston, MA 02111-1307, USA. */
#define ASM_OUTPUT_CASE_END(FILE,NUM,TABLE) \
do { \
if (switch_table_difference_label_flag) \
- asm_fprintf ((FILE), "\t%s %LLD%d,%LL%d\n", SET_ASM_OP, (NUM), (NUM));\
+ asm_fprintf ((FILE), "%s%LLD%d,%LL%d\n", SET_ASM_OP, (NUM), (NUM));\
switch_table_difference_label_flag = 0; \
} while (0)
@@ -88,7 +88,7 @@ do { \
#undef ASM_OUTPUT_ALIGNED_LOCAL
#define ASM_OUTPUT_ALIGNED_LOCAL(FILE, NAME, SIZE, ALIGN) \
do { \
- fprintf ((FILE), "\t%s\t%s,%u,%u\n", \
+ fprintf ((FILE), "%s%s,%u,%u\n", \
BSS_ASM_OP, (NAME), (SIZE), MAX ((ALIGN) / BITS_PER_UNIT, 4)); \
} while (0)
@@ -101,7 +101,7 @@ do { \
#define ASM_OUTPUT_ASCII(FILE,PTR,LEN) \
do { \
register int sp = 0, lp = 0, ch; \
- fprintf ((FILE), "\t%s ", BYTE_ASM_OP); \
+ fprintf ((FILE), "%s", BYTE_ASM_OP); \
do { \
ch = (PTR)[sp]; \
if (ch > ' ' && ! (ch & 0x80) && ch != '\\') \
@@ -116,7 +116,7 @@ do { \
{ \
if ((sp % 10) == 0) \
{ \
- fprintf ((FILE), "\n\t%s ", BYTE_ASM_OP); \
+ fprintf ((FILE), "\n%s", BYTE_ASM_OP); \
} \
else \
{ \