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:
Maxime Henrion 2003-07-13 10:34:09 +00:00
parent 8ce4e5189e
commit 96f5595bf7

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"