diff options
author | Freddy Ye <freddy.ye@intel.com> | 2022-11-04 09:04:57 +0800 |
---|---|---|
committer | Freddy Ye <freddy.ye@intel.com> | 2022-11-04 09:32:17 +0800 |
commit | a806fc2767d74f2d052647e272dd4339bd747bf0 (patch) | |
tree | 852c3689b961529a08e91a61d2878c282f51650a /llvm/lib/Support/Host.cpp | |
parent | e3ccbae309273900a42e30b606c15c873d57f1ea (diff) | |
download | llvm-a806fc2767d74f2d052647e272dd4339bd747bf0.zip llvm-a806fc2767d74f2d052647e272dd4339bd747bf0.tar.gz llvm-a806fc2767d74f2d052647e272dd4339bd747bf0.tar.bz2 |
[X86] Support -march=raptorlake, meteorlake
Reviewed By: pengfei, skan, MaskRay
Differential Revision: https://reviews.llvm.org/D135937
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index d4495b3..bd8a206 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -816,6 +816,12 @@ getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model, // Alderlake: case 0x97: case 0x9a: + // Raptorlake: + case 0xb7: + // Meteorlake: + case 0xb5: + case 0xaa: + case 0xac: CPU = "alderlake"; *Type = X86::INTEL_COREI7; *Subtype = X86::INTEL_COREI7_ALDERLAKE; |