summaryrefslogtreecommitdiff
path: root/gcc/config/i386/i386-coff.h
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 13:03:20 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 13:03:20 +0000
commit71113c04645338ea5ddcc659f17aaa25d6e22811 (patch)
tree457c93d2e660e4af8032f8d4f333fc2d67a3d3f4 /gcc/config/i386/i386-coff.h
parentdf181ef8b783a547431cb1272e8875d0c911e04b (diff)
downloadgcc-71113c04645338ea5ddcc659f17aaa25d6e22811.tar.gz
Change callers in config/[h-l]*/ 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@36619 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/i386-coff.h')
-rw-r--r--gcc/config/i386/i386-coff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/i386/i386-coff.h b/gcc/config/i386/i386-coff.h
index f20455035dc..e2e5ed700ef 100644
--- a/gcc/config/i386/i386-coff.h
+++ b/gcc/config/i386/i386-coff.h
@@ -84,7 +84,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)
@@ -94,7 +94,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)