Since -march=pentium4 is supposed to be fixed with GCC 3.3, and

since people have been reporting success with it, re-enable the
pentium4 optimization.
This commit is contained in:
mux 2003-07-13 10:34:09 +00:00
parent b996c0141e
commit adb7e9909e

View File

@ -50,9 +50,7 @@ _CPUCFLAGS = -march=${CPUTYPE}
. elif ${CPUTYPE} == "k5"
_CPUCFLAGS = -march=pentium
. elif ${CPUTYPE} == "p4"
# gcc 3.2 is known to produce broken code with -march=pentium4, so it is
# disabled for now. This is fixed in gcc 3.3.
_CPUCFLAGS = -march=pentium3
_CPUCFLAGS = -march=pentium4
. elif ${CPUTYPE} == "p3"
_CPUCFLAGS = -march=pentium3
. elif ${CPUTYPE} == "p2"