diff options
author | Evandro Menezes <e.menezes@samsung.com> | 2019-10-02 16:26:40 -0500 |
---|---|---|
committer | Evandro Menezes <e.menezes@samsung.com> | 2019-10-30 15:02:59 -0500 |
commit | 215da6606c0efa1f2bc91de87abfd3dc7163b1bd (patch) | |
tree | 6a4bc81c02ab08664e76a8f5f4333fbda27b0f86 /llvm/lib/Support/Host.cpp | |
parent | 88d77fce94c6103d476beefc062944dc3dc1988a (diff) | |
download | bcm5719-llvm-215da6606c0efa1f2bc91de87abfd3dc7163b1bd.tar.gz bcm5719-llvm-215da6606c0efa1f2bc91de87abfd3dc7163b1bd.zip |
[clang][llvm] Obsolete Exynos M1 and M2
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index 2a473a1994c..b57250894f3 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -265,14 +265,12 @@ StringRef sys::detail::getHostCPUNameForARM(StringRef ProcCpuinfoContent) { unsigned Exynos = (Variant << 12) | Part; switch (Exynos) { default: - // Default by falling through to Exynos M1. + // Default by falling through to Exynos M3. LLVM_FALLTHROUGH; - - case 0x1001: - return "exynos-m1"; - - case 0x4001: - return "exynos-m2"; + case 0x1002: + return "exynos-m3"; + case 0x1003: + return "exynos-m4"; } } |