From 96f5595bf71bfee757cd723ce65610daf306fba7 Mon Sep 17 00:00:00 2001 From: Maxime Henrion Date: Sun, 13 Jul 2003 10:34:09 +0000 Subject: [PATCH] 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. --- share/mk/bsd.cpu.mk | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/share/mk/bsd.cpu.mk b/share/mk/bsd.cpu.mk index a8507cbaff9..1674f9e42f3 100644 --- a/share/mk/bsd.cpu.mk +++ b/share/mk/bsd.cpu.mk @@ -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"