diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2015-08-10 19:19:05 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2015-08-10 12:19:05 -0700 |
commit | 736e56dac06f77d4f77c01732f8c180300e819ab (patch) | |
tree | b86d0ead1d44f3aba8dbf07ae3f77a4f7b9b81e5 /gcc | |
parent | 52ec0726926b9d5adaa7c6142052a5e405443855 (diff) | |
download | gcc-736e56dac06f77d4f77c01732f8c180300e819ab.zip gcc-736e56dac06f77d4f77c01732f8c180300e819ab.tar.gz gcc-736e56dac06f77d4f77c01732f8c180300e819ab.tar.bz2 |
Treat model == 0x4f as Broadwell
gcc/testsuite/
* gcc.target/i386/builtin_target.c (check_intel_cpu_model):
Treat model == 0x4f as Broadwell.
libgcc/
* config/i386/cpuinfo.c (get_intel_cpu): Treat model == 0x4f as
Broadwell.
From-SVN: r226766
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/testsuite/gcc.target/i386/builtin_target.c | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 146a730..34a5c1a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-08-10 H.J. Lu <hongjiu.lu@intel.com> + + * gcc.target/i386/builtin_target.c (check_intel_cpu_model): + Treat model == 0x4f as Broadwell. + 2015-08-10 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org> PR libfortran/67140 diff --git a/gcc/testsuite/gcc.target/i386/builtin_target.c b/gcc/testsuite/gcc.target/i386/builtin_target.c index 10c0568..4adea27 100644 --- a/gcc/testsuite/gcc.target/i386/builtin_target.c +++ b/gcc/testsuite/gcc.target/i386/builtin_target.c @@ -74,6 +74,7 @@ check_intel_cpu_model (unsigned int family, unsigned int model, assert (__builtin_cpu_is ("haswell")); break; case 0x3d: + case 0x47: case 0x4f: case 0x56: /* Broadwell. */ |