diff options
author | Craig Topper <craig.topper@gmail.com> | 2015-08-07 20:09:42 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@gmail.com> | 2015-08-07 20:09:42 +0000 |
commit | a3db7d26ab4d440a18189b7c6787cd37abd28933 (patch) | |
tree | 71a896979a5ad0eff160643c4bdd9d90b6aa3e9d /llvm/lib/Support/Host.cpp | |
parent | 4001998455551b9442923bf0ceb052ea3faa3301 (diff) | |
download | llvm-a3db7d26ab4d440a18189b7c6787cd37abd28933.zip llvm-a3db7d26ab4d440a18189b7c6787cd37abd28933.tar.gz llvm-a3db7d26ab4d440a18189b7c6787cd37abd28933.tar.bz2 |
Add Intel family 6 model 90 as Silvermont. Fixes PR24392.
llvm-svn: 244352
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 1bd1fe2..df50aa5 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -381,6 +381,7 @@ StringRef sys::getHostCPUName() { case 55: case 74: case 77: + case 90: return "silvermont"; default: // Unknown family 6 CPU, try to guess. |