From: H.J. Lu Date: Tue, 27 Aug 2013 18:11:23 +0000 (+0000) Subject: Update Haswell processor detection X-Git-Tag: releases/gcc-4.9.0~4408 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=d0cf4e841d8ab907811943e04102d9765660c003;p=thirdparty%2Fgcc.git Update Haswell processor detection * config/i386/driver-i386.c (host_detect_local_cpu): Update Haswell processor detection. From-SVN: r202028 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 9698dc910184..54a4cf9e52c1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2013-08-27 H.J. Lu + + * config/i386/driver-i386.c (host_detect_local_cpu): Update + Haswell processor detection. + 2013-08-27 Christian Widmer PR target/57927 diff --git a/gcc/config/i386/driver-i386.c b/gcc/config/i386/driver-i386.c index 001d12fd2410..4cb9907b5ed7 100644 --- a/gcc/config/i386/driver-i386.c +++ b/gcc/config/i386/driver-i386.c @@ -673,6 +673,8 @@ const char *host_detect_local_cpu (int argc, const char **argv) cpu = "core-avx-i"; break; case 0x3c: + case 0x45: + case 0x46: /* Haswell. */ cpu = "core-avx2"; break;