diff options
author | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 13:22:47 +0000 |
---|---|---|
committer | hp <hp@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-09-25 13:22:47 +0000 |
commit | ff60eaf81d96c5340aa6af5820f0c5c0e1f5ffbb (patch) | |
tree | ff34803fc67299c99a03991990dc09043bcac978 /gcc/config/mips/elf.h | |
parent | 71113c04645338ea5ddcc659f17aaa25d6e22811 (diff) | |
download | gcc-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/mips/elf.h')
-rw-r--r-- | gcc/config/mips/elf.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/config/mips/elf.h b/gcc/config/mips/elf.h index cc193412f98..5dff663a66b 100644 --- a/gcc/config/mips/elf.h +++ b/gcc/config/mips/elf.h @@ -136,7 +136,7 @@ do { \ #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); \ putc (',', FILE); \ fprintf (FILE, TYPE_OPERAND_FMT, "object"); \ @@ -145,7 +145,7 @@ do { \ 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))); \ } \ @@ -168,7 +168,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))); \ } \ |