From 9f316a2e0c1c60eb656bfbf387e6545e01d065ff Mon Sep 17 00:00:00 2001 From: Craig Topper Date: Fri, 7 Aug 2015 20:09:42 +0000 Subject: [PATCH] Add Intel family 6 model 90 as Silvermont. Fixes PR24392. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@244352 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Host.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/Support/Host.cpp b/lib/Support/Host.cpp index 1bd1fe2bea0..df50aa54ab9 100644 --- a/lib/Support/Host.cpp +++ b/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. -- 2.34.1