diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-08-18 22:06:45 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-08-18 22:06:45 +0000 |
commit | acde6aab3ee3292f4e624e902b0216eb6e1b2db9 (patch) | |
tree | f26e8f81544155568791bf4191191ef7b17bfcc0 /usr.bin/awk/Makefile | |
parent | 2c8d4bd4dc7076ec8394c7fcc8594c8dad8b1172 (diff) |
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.
Diffstat (limited to 'usr.bin/awk/Makefile')
-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> |