diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:40:20 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2003-08-01 07:40:20 +0000 |
commit | 7dffa371e27308374f15c1f63d11bef582a20f4c (patch) | |
tree | b5403fa58c1777998d1756660104197990ebd82b /gnu/usr.bin/gas | |
parent | 814efada3bbc6e71ca43a5de8a86d8d7f149500a (diff) |
A working gcc 2.95/m88k compiler, for some low standard value of working.
Configuration settings mostly borrowed from the former gcc 2.8 configuration.
A few typos and fixes backported from gcc 3.3, and a hell lot of fixes from
my fingertips.
This is enough to yield a compiler which will produce correct code at -O0.
Optimization is slightly broken for some constructs, and more fixes are in
the pipeline.
ok deraadt@
Diffstat (limited to 'gnu/usr.bin/gas')
-rw-r--r-- | gnu/usr.bin/gas/config/tc-m88k.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/usr.bin/gas/config/tc-m88k.h b/gnu/usr.bin/gas/config/tc-m88k.h index 08d1c20e1f9..024c16a77ab 100644 --- a/gnu/usr.bin/gas/config/tc-m88k.h +++ b/gnu/usr.bin/gas/config/tc-m88k.h @@ -1,4 +1,4 @@ -/* $OpenBSD: tc-m88k.h,v 1.3 2001/12/27 00:23:27 miod Exp $ */ +/* $OpenBSD: tc-m88k.h,v 1.4 2003/08/01 07:40:19 miod Exp $ */ /* m88k.h -- Assembler for the Motorola 88000 Contributed by Devon Bowen of Buffalo University @@ -38,7 +38,7 @@ #define LOCAL_LABEL(name) (name[0] == '@' \ && ( name[1] == 'L' || name[1] == '.' )) -#define tc_crawl_symbol_chain(a) {;} /* not used */ -#define tc_headers_hook(a) {;} /* not used */ -#define tc_aout_pre_write_hook(x) {;} /* not used */ +#define tc_crawl_symbol_chain(a) do { } while (0) /* not used */ +#define tc_headers_hook(a) do { } while (0) /* not used */ +#define tc_aout_pre_write_hook(x) do { } while (0) /* not used */ |