diff options
author | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-25 11:45:51 +0000 |
---|---|---|
committer | Hans-Peter Nilsson <hp@gcc.gnu.org> | 2000-09-25 11:45:51 +0000 |
commit | ca13100a6c969cbbca0dd75d5e8d6cf76a586cf8 (patch) | |
tree | 9646458abedc9e351803234a2c14fdcd5392f146 /gcc/config/openbsd.h | |
parent | e8638df010321ac9fb84265de46250b36454d217 (diff) | |
download | gcc-ca13100a6c969cbbca0dd75d5e8d6cf76a586cf8.zip gcc-ca13100a6c969cbbca0dd75d5e8d6cf76a586cf8.tar.gz gcc-ca13100a6c969cbbca0dd75d5e8d6cf76a586cf8.tar.bz2 |
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.
From-SVN: r36615
Diffstat (limited to 'gcc/config/openbsd.h')
-rw-r--r-- | gcc/config/openbsd.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/config/openbsd.h b/gcc/config/openbsd.h index 8074222..87b3a60 100644 --- a/gcc/config/openbsd.h +++ b/gcc/config/openbsd.h @@ -196,7 +196,7 @@ Boston, MA 02111-1307, USA. */ #undef ASM_DECLARE_FUNCTION_NAME #define ASM_DECLARE_FUNCTION_NAME(FILE, NAME, DECL) \ do { \ - fprintf (FILE, "\t%s\t", TYPE_ASM_OP); \ + fprintf (FILE, "%s", TYPE_ASM_OP); \ assemble_name (FILE, NAME); \ fputs (" , ", FILE); \ fprintf (FILE, TYPE_OPERAND_FMT, "function"); \ @@ -213,7 +213,7 @@ Boston, MA 02111-1307, USA. */ do { \ if (!flag_inhibit_size_directive) \ { \ - fprintf (FILE, "\t%s\t", SIZE_ASM_OP); \ + fprintf (FILE, "%s", SIZE_ASM_OP); \ assemble_name (FILE, (FNAME)); \ fputs (" , . - ", FILE); \ assemble_name (FILE, (FNAME)); \ @@ -227,7 +227,7 @@ Boston, MA 02111-1307, USA. */ #undef ASM_DECLARE_OBJECT_NAME #define ASM_DECLARE_OBJECT_NAME(FILE, NAME, DECL) \ do { \ - fprintf (FILE, "\t%s\t ", TYPE_ASM_OP); \ + fprintf (FILE, "%s", TYPE_ASM_OP); \ assemble_name (FILE, NAME); \ fputs (" , ", FILE); \ fprintf (FILE, TYPE_OPERAND_FMT, "object"); \ @@ -236,7 +236,7 @@ Boston, MA 02111-1307, USA. */ if (!flag_inhibit_size_directive && DECL_SIZE (DECL)) \ { \ size_directive_output = 1; \ - fprintf (FILE, "\t%s\t", SIZE_ASM_OP); \ + fprintf (FILE, "%s", SIZE_ASM_OP); \ assemble_name (FILE, NAME); \ fprintf (FILE, " , %d\n", int_size_in_bytes (TREE_TYPE (DECL)));\ } \ @@ -258,7 +258,7 @@ do { \ && !size_directive_output) \ { \ size_directive_output = 1; \ - fprintf (FILE, "\t%s\t", SIZE_ASM_OP); \ + fprintf (FILE, "%s", SIZE_ASM_OP); \ assemble_name (FILE, name); \ fprintf (FILE, " , %d\n", int_size_in_bytes (TREE_TYPE (DECL)));\ } \ |