summaryrefslogtreecommitdiff
path: root/gcc/config/m68k/amix.h
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 13:22:47 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 13:22:47 +0000
commitff60eaf81d96c5340aa6af5820f0c5c0e1f5ffbb (patch)
treeff34803fc67299c99a03991990dc09043bcac978 /gcc/config/m68k/amix.h
parent71113c04645338ea5ddcc659f17aaa25d6e22811 (diff)
downloadgcc-ff60eaf81d96c5340aa6af5820f0c5c0e1f5ffbb.tar.gz
Change callers in config/m*/ to match:
Changes add TABs on either or both sides, covering start of line, up to any operand for all .*ASM.*_OP definitions. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@36620 138bc75d-0d04-0410-961f-82ee72b054a4
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 \
{ \