[llvm] f289108 - [X86] Modify model value of meteorlake.

Freddy Ye via llvm-commits llvm-commits at lists.llvm.org
Thu Jan 5 04:08:48 PST 2023


Author: Freddy Ye
Date: 2023-01-05T20:08:34+08:00
New Revision: f2891086f4b64434ecf471960b6daf6f29fd4328

URL: https://github.com/llvm/llvm-project/commit/f2891086f4b64434ecf471960b6daf6f29fd4328
DIFF: https://github.com/llvm/llvm-project/commit/f2891086f4b64434ecf471960b6daf6f29fd4328.diff

LOG: [X86] Modify model value of meteorlake.

Reviewed By: pengfei

Differential Revision: https://reviews.llvm.org/D140943

Added: 
    

Modified: 
    compiler-rt/lib/builtins/cpu_model.c
    llvm/lib/TargetParser/Host.cpp

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/builtins/cpu_model.c b/compiler-rt/lib/builtins/cpu_model.c
index ce5f7291035f2..83d0019f5f162 100644
--- a/compiler-rt/lib/builtins/cpu_model.c
+++ b/compiler-rt/lib/builtins/cpu_model.c
@@ -449,7 +449,6 @@ getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
     // Raptorlake:
     case 0xb7:
     // Meteorlake:
-    case 0xb5:
     case 0xaa:
     case 0xac:
       CPU = "alderlake";

diff  --git a/llvm/lib/TargetParser/Host.cpp b/llvm/lib/TargetParser/Host.cpp
index da98afab447fa..7263598001e02 100644
--- a/llvm/lib/TargetParser/Host.cpp
+++ b/llvm/lib/TargetParser/Host.cpp
@@ -824,7 +824,6 @@ getIntelProcessorTypeAndSubtype(unsigned Family, unsigned Model,
     // Raptorlake:
     case 0xb7:
     // Meteorlake:
-    case 0xb5:
     case 0xaa:
     case 0xac:
       CPU = "alderlake";


        


More information about the llvm-commits mailing list