diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2004-07-02 13:58:18 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2004-07-02 13:58:18 +0000 |
commit | 16f5556628dee2b11b2c7638e54a4328abc98d40 (patch) | |
tree | a6842615f9a487b0fdfa7aedec46fc9852d90e13 /sys/arch/mvme88k | |
parent | 17b97e795b39ac51ad52ecbde65f26cff0e6b894 (diff) |
Disable a -O2 specific optimization which causes kern_fork (and probably other
files) to be miscompiled, until the problem is fixed in the compiler.
Diffstat (limited to 'sys/arch/mvme88k')
-rw-r--r-- | sys/arch/mvme88k/conf/Makefile.mvme88k | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mvme88k/conf/Makefile.mvme88k b/sys/arch/mvme88k/conf/Makefile.mvme88k index 80cab6de46a..90b6d1491ad 100644 --- a/sys/arch/mvme88k/conf/Makefile.mvme88k +++ b/sys/arch/mvme88k/conf/Makefile.mvme88k @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.mvme88k,v 1.34 2004/04/29 19:54:36 miod Exp $ +# $OpenBSD: Makefile.mvme88k,v 1.35 2004/07/02 13:58:17 miod Exp $ # # Makefile for OpenBSD # @@ -43,7 +43,7 @@ CMACHFLAGS= -mno-check-zero-division -mmemcpy \ .if ${IDENT:M-DNO_PROPOLICE} CMACHFLAGS+= -fno-stack-protector .endif -COPTS?= -O2 +COPTS?= -O2 -fno-rerun-cse-after-loop CFLAGS= ${DEBUG} ${CWARNFLAGS} ${CMACHFLAGS} ${COPTS} ${PIPE} AFLAGS= -x assembler-with-cpp -traditional-cpp -D_LOCORE ${CMACHFLAGS} LINKFLAGS= -Ttext 0x10000 -e start |