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)
This commit is contained in:
Andrey A. Chernov 2007-06-26 19:10:20 +00:00
parent 97824da382
commit 3f5b2c267b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=171049

View File

@ -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++