From 394765ffb7b534bad0348165a516fd16e3fc8989 Mon Sep 17 00:00:00 2001 From: hp Date: Mon, 25 Sep 2000 11:45:51 +0000 Subject: 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 --- gcc/config/lynx.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/config/lynx.h') 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) -- cgit v1.2.1