summaryrefslogtreecommitdiff
path: root/gcc/config/m68k/coff.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/coff.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/coff.h')
-rw-r--r--gcc/config/m68k/coff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/m68k/coff.h b/gcc/config/m68k/coff.h
index dde140a1086..4565f77fbec 100644
--- a/gcc/config/m68k/coff.h
+++ b/gcc/config/m68k/coff.h
@@ -155,7 +155,7 @@ dtors_section () \
#define ASM_OUTPUT_CONSTRUCTOR(FILE,NAME) \
do { \
ctors_section (); \
- fprintf (FILE, "\t%s\t ", INT_ASM_OP); \
+ fprintf (FILE, "%s", INT_ASM_OP); \
assemble_name (FILE, NAME); \
fprintf (FILE, "\n"); \
} while (0)
@@ -165,7 +165,7 @@ dtors_section () \
#define ASM_OUTPUT_DESTRUCTOR(FILE,NAME) \
do { \
dtors_section (); \
- fprintf (FILE, "\t%s\t ", INT_ASM_OP); \
+ fprintf (FILE, "%s", INT_ASM_OP); \
assemble_name (FILE, NAME); \
fprintf (FILE, "\n"); \
} while (0)