From a099abcf473033639ce6d0b8da9a191e88ccba3b Mon Sep 17 00:00:00 2001 From: ache Date: Tue, 26 Jun 2007 19:10:20 +0000 Subject: This is temp workaround of nasty gcc 4.2.0 -O2 bug which may skip the rest of the loop when arrays used inside. http://gcc.gnu.org/bugzilla/show_bug.cgi?id=32500 Approved by: re (kensmith) --- share/mk/sys.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'share') diff --git a/share/mk/sys.mk b/share/mk/sys.mk index a78dfa0..4d375af 100644 --- a/share/mk/sys.mk +++ b/share/mk/sys.mk @@ -35,7 +35,7 @@ CC ?= c89 CFLAGS ?= -O .else CC ?= cc -CFLAGS ?= -O2 -fno-strict-aliasing -pipe +CFLAGS ?= -O2 -fno-strict-aliasing -fno-tree-vrp -pipe .endif CXX ?= c++ -- cgit v1.1