[compiler-rt] 90406d6 - [X86] Add cooperlake and tigerlake to the enum in cpu_model.c

Craig Topper via llvm-commits llvm-commits at lists.llvm.org
Sun Jun 21 16:22:10 PDT 2020


Author: Craig Topper
Date: 2020-06-21T16:20:26-07:00
New Revision: 90406d62e51daa2e719578df65e9cec31b32a4e7

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

LOG: [X86] Add cooperlake and tigerlake to the enum in cpu_model.c

I forgot to do this when I added then to _cpu_indicator_init.

Added: 
    

Modified: 
    compiler-rt/lib/builtins/cpu_model.c

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/builtins/cpu_model.c b/compiler-rt/lib/builtins/cpu_model.c
index ce25227d0b3b..59c6974207c7 100644
--- a/compiler-rt/lib/builtins/cpu_model.c
+++ b/compiler-rt/lib/builtins/cpu_model.c
@@ -82,6 +82,8 @@ enum ProcessorSubtypes {
   INTEL_COREI7_ICELAKE_SERVER,
   AMDFAM17H_ZNVER2,
   INTEL_COREI7_CASCADELAKE,
+  INTEL_COREI7_TIGERLAKE,
+  INTEL_COREI7_COOPERLAKE,
   CPU_SUBTYPE_MAX
 };
 


        


More information about the llvm-commits mailing list