forked from OSchip/llvm-project
Recognize Intel CPUs with Family=6 and Model=44.
According to Intel Application Note 485, this value is used for "Intel Core i7 and Intel Xeon processor". Just include it with the other "corei7-avx" entries. llvm-svn: 134750
This commit is contained in:
parent
3c68b626e7
commit
eff24111b9
|
@ -215,6 +215,7 @@ std::string sys::getHostCPUName() {
|
|||
case 37: // Intel Core i7, laptop version.
|
||||
return "corei7";
|
||||
case 42: // SandyBridge
|
||||
case 44:
|
||||
case 45:
|
||||
return "corei7-avx";
|
||||
|
||||
|
|
Loading…
Reference in New Issue