diff options
author | Cui, Lili <lili.cui@intel.com> | 2023-06-29 03:10:35 +0000 |
---|---|---|
committer | Cui, Lili <lili.cui@intel.com> | 2023-06-29 03:10:35 +0000 |
commit | e510c3be13a8ccdf1fc1b27c2501c126d493f335 (patch) | |
tree | 8a83a6d71da2301245cf223f75588e50d79204d8 | |
parent | 0d6b822f52ede5d8060d79640019e1d758ffa6ea (diff) | |
download | gcc-e510c3be13a8ccdf1fc1b27c2501c126d493f335.zip gcc-e510c3be13a8ccdf1fc1b27c2501c126d493f335.tar.gz gcc-e510c3be13a8ccdf1fc1b27c2501c126d493f335.tar.bz2 |
x86: Update model values for Alderlake, Rocketlake and Raptorlake.
Update model values for Alderlake, Rocketlake and Raptorlake according to SDM.
gcc/ChangeLog
* common/config/i386/cpuinfo.h (get_intel_cpu): Remove model value 0xa8
from Rocketlake, move model value 0xbf from Alderlake to Raptorlake.
-rw-r--r-- | gcc/common/config/i386/cpuinfo.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gcc/common/config/i386/cpuinfo.h b/gcc/common/config/i386/cpuinfo.h index 61559ed..ae48bc1 100644 --- a/gcc/common/config/i386/cpuinfo.h +++ b/gcc/common/config/i386/cpuinfo.h @@ -463,7 +463,6 @@ get_intel_cpu (struct __processor_model *cpu_model, cpu_model->__cpu_subtype = INTEL_COREI7_SKYLAKE; break; case 0xa7: - case 0xa8: /* Rocket Lake. */ cpu = "rocketlake"; CHECK___builtin_cpu_is ("corei7"); @@ -536,9 +535,9 @@ get_intel_cpu (struct __processor_model *cpu_model, break; case 0x97: case 0x9a: - case 0xbf: /* Alder Lake. */ case 0xb7: + case 0xbf: /* Raptor Lake. */ case 0xaa: case 0xac: |