Add a missing cpu subtype.

llvm-svn: 155402
This commit is contained in:
Evan Cheng 2012-04-23 22:41:39 +00:00
parent 671ad2a572
commit 7fd160700f
1 changed files with 4 additions and 0 deletions

View File

@ -230,6 +230,10 @@ std::string sys::getHostCPUName() {
case 45:
return "corei7-avx";
// Ivy Bridge:
case 58:
return "core-avx-i";
case 28: // Intel Atom processor. All processors are manufactured using
// the 45 nm process
return "atom";