mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-02 10:33:53 +00:00
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@134750 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e2e86f6bca
commit
26fc025e62
@ -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…
x
Reference in New Issue
Block a user