From eff24111b923490a4f7a4aab07ebc039f66d0485 Mon Sep 17 00:00:00 2001 From: Bob Wilson Date: Fri, 8 Jul 2011 22:09:35 +0000 Subject: 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 --- llvm/lib/Support/Host.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'llvm/lib/Support/Host.cpp') diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 4299aa4e931..2829de06d6d 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -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"; -- cgit v1.2.3