diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2008-03-28 18:35:22 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2008-03-28 18:35:22 +0000 |
commit | 49066830976941fb697bde0c74d48286845026a5 (patch) | |
tree | f0e9290aa36a1f59651c1f8865293aa3cbe6b0bc /gnu/egcs | |
parent | 586a15c057fc8fed79cf09fccbbdca32f14dc259 (diff) |
Remove unnecessary whitespace on .type foo,@object lines, which confuse gas
on some (not in-tree) configurations.
ok espie@ kettenis@
Diffstat (limited to 'gnu/egcs')
-rw-r--r-- | gnu/egcs/gcc/config/openbsd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/egcs/gcc/config/openbsd.h b/gnu/egcs/gcc/config/openbsd.h index 453903be98a..dd49623e56c 100644 --- a/gnu/egcs/gcc/config/openbsd.h +++ b/gnu/egcs/gcc/config/openbsd.h @@ -235,7 +235,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, "\t%s\t", TYPE_ASM_OP); \ assemble_name (FILE, NAME); \ fputs (" , ", FILE); \ fprintf (FILE, TYPE_OPERAND_FMT, "object"); \ |