Restore -O2 optimization after gcc 4.2.1 import, which has

fixed the issue raised by gcc 4.2.0.

Tested with:	test case found in gcc bug 32500
Approved by:	re (kensmith), ache, kan
This commit is contained in:
Xin LI 2007-08-14 13:44:08 +00:00
parent 4da6937165
commit 179dc282b4

View File

@ -35,7 +35,7 @@ CC ?= c89
CFLAGS ?= -O
.else
CC ?= cc
CFLAGS ?= -O1 -pipe
CFLAGS ?= -O2 -fno-strict-aliasing -pipe
.endif
CXX ?= c++