diff options
author | 2013-08-18 22:06:44 +0000 | |
---|---|---|
committer | 2013-08-18 22:06:44 +0000 | |
commit | 5fd15cb3a62f9a204ed3cb4cbc68c2d6d805eea8 (patch) | |
tree | 04cedf8b0123948d4188d0dc75257b9c5b29b4f2 | |
parent | Fix prototypes of do_load_half() and do_load_byte() - those return a (diff) | |
download | wireguard-openbsd-5fd15cb3a62f9a204ed3cb4cbc68c2d6d805eea8.tar.xz wireguard-openbsd-5fd15cb3a62f9a204ed3cb4cbc68c2d6d805eea8.zip |
Remove wrong workaround for the 88100 `awk bug' - it turns out compiling
with -O2 changes the alignment of code and data, which caused the awk binary
to be more prone to trigger the DAE bug which just got fixed.
-rw-r--r-- | usr.bin/awk/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/usr.bin/awk/Makefile b/usr.bin/awk/Makefile index 119a5089c11..66601474909 100644 --- a/usr.bin/awk/Makefile +++ b/usr.bin/awk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.13 2013/07/28 18:10:16 miod Exp $ +# $OpenBSD: Makefile,v 1.14 2013/08/18 22:06:44 miod Exp $ PROG= awk SRCS= ytab.c lex.c b.c main.c parse.c proctab.c tran.c lib.c run.c @@ -19,8 +19,4 @@ proctab.c: maketab maketab: ytab.h maketab.c ${HOSTCC} ${HOSTCFLAGS} ${.CURDIR}/maketab.c -o $@ -.if ${MACHINE_ARCH} == "m88k" -COPTS+= -O1 -.endif - .include <bsd.prog.mk> |