[clang] [llvm] [AArch64] Add initial support for -mcpu=olympus. (PR #132368)
David Green via llvm-commits
llvm-commits at lists.llvm.org
Mon Mar 24 02:58:36 PDT 2025
================
@@ -288,6 +288,7 @@ StringRef sys::detail::getHostCPUNameForARM(StringRef ProcCpuinfoContent) {
if (Implementer == "0x4e") { // NVIDIA Corporation
return StringSwitch<const char *>(Part)
.Case("0x004", "carmel")
+ .Case("0x10", "olympus")
----------------
davemgreen wrote:
I'm not sure what these are always tested against, but you might want to check for "0x010" too.
https://github.com/llvm/llvm-project/pull/132368
More information about the llvm-commits
mailing list