aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Host.cpp
diff options
context:
space:
mode:
authorTies Stuij <ties.stuij@arm.com>2022-01-31 14:02:51 +0000
committerTies Stuij <ties.stuij@arm.com>2022-01-31 14:23:35 +0000
commit6b1e844b69f15bb7dffaf9365cd2b355d2eb7579 (patch)
treed7ff2442c245b60ac217a35beb031f0bc0272fef /llvm/lib/Support/Host.cpp
parentae990a3cbd05f4a94be2e3daa93d5d078ac133d3 (diff)
downloadllvm-6b1e844b69f15bb7dffaf9365cd2b355d2eb7579.zip
llvm-6b1e844b69f15bb7dffaf9365cd2b355d2eb7579.tar.gz
llvm-6b1e844b69f15bb7dffaf9365cd2b355d2eb7579.tar.bz2
[ARM] Add Cortex-X1C Support for Clang and LLVM
This patch upstreams support for the Arm-v8 Cortex-X1C processor for AArch64 and ARM. For more information, see: - https://community.arm.com/arm-community-blogs/b/announcements/posts/arm-cortex-x1c - https://developer.arm.com/documentation/101968/0002/Functional-description/Technical-overview/Components The following people contributed to this patch: - Simon Tatham - Ties Stuij Reviewed By: dmgreen Differential Revision: https://reviews.llvm.org/D117202
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r--llvm/lib/Support/Host.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp
index 9a44702..f6003b7 100644
--- a/llvm/lib/Support/Host.cpp
+++ b/llvm/lib/Support/Host.cpp
@@ -211,6 +211,7 @@ StringRef sys::detail::getHostCPUNameForARM(StringRef ProcCpuinfoContent) {
.Case("0xd0d", "cortex-a77")
.Case("0xd41", "cortex-a78")
.Case("0xd44", "cortex-x1")
+ .Case("0xd4c", "cortex-x1c")
.Case("0xd0c", "neoverse-n1")
.Case("0xd49", "neoverse-n2")
.Case("0xd40", "neoverse-v1")