summaryrefslogtreecommitdiff
path: root/gcc/config/lynx.h
diff options
context:
space:
mode:
authorhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 11:45:51 +0000
committerhp <hp@138bc75d-0d04-0410-961f-82ee72b054a4>2000-09-25 11:45:51 +0000
commit394765ffb7b534bad0348165a516fd16e3fc8989 (patch)
tree9646458abedc9e351803234a2c14fdcd5392f146 /gcc/config/lynx.h
parent17d8e118179b1833778a96146995aece8cb732da (diff)
downloadgcc-394765ffb7b534bad0348165a516fd16e3fc8989.tar.gz
Change callers in config/* 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@36615 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/lynx.h')
-rw-r--r--gcc/config/lynx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/config/lynx.h b/gcc/config/lynx.h
index 4c215c2c38f..7769be56343 100644
--- a/gcc/config/lynx.h
+++ b/gcc/config/lynx.h
@@ -150,7 +150,7 @@ do { \
#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)
@@ -161,7 +161,7 @@ do { \
#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)