diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2012-11-09 21:47:39 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2012-11-09 21:47:39 +0000 |
commit | 2fbd405a652c2c06df3a16f49da52fc935a79b8c (patch) | |
tree | cf3d8413494fec625525d8459bf8f8fc340891cd /gnu/usr.bin/gcc | |
parent | c90b8572f8104f73a61f87e8805e02bf1950b890 (diff) |
Doh, in gcc3 the various *_ASM_OP need to output explicit whitespace before
and after the keyword.
Diffstat (limited to 'gnu/usr.bin/gcc')
-rw-r--r-- | gnu/usr.bin/gcc/gcc/config/m88k/openbsd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/usr.bin/gcc/gcc/config/m88k/openbsd.h b/gnu/usr.bin/gcc/gcc/config/m88k/openbsd.h index 04e05ebf395..54f3bec168f 100644 --- a/gnu/usr.bin/gcc/gcc/config/m88k/openbsd.h +++ b/gnu/usr.bin/gcc/gcc/config/m88k/openbsd.h @@ -24,9 +24,9 @@ Boston, MA 02111-1307, USA. */ /* <m88k/m88k.h> provided wrong GLOBAL_ASM_OP and SET_ASM_OP */ #undef SET_ASM_OP -#define SET_ASM_OP "equ" +#define SET_ASM_OP "\tequ\t" #undef GLOBAL_ASM_OP -#define GLOBAL_ASM_OP ".globl" +#define GLOBAL_ASM_OP "\t.globl\t" /* <m88k/m88k.h> provided wrong SUPPORTS_WEAK and SUPPORTS_ONE_ONLY values */ #undef SUPPORTS_WEAK |