[clang] [lld] [llvm] [AArch64] Fix stale +zcm target feature to +zcm-gpr64 (PR #146260)
Tomer Shafir via llvm-commits
llvm-commits at lists.llvm.org
Sun Jun 29 03:08:30 PDT 2025
================
@@ -170,7 +170,7 @@ getAArch64MicroArchFeaturesFromMtune(const Driver &D, StringRef Mtune,
// 'cyclone' and later have zero-cycle register moves and zeroing.
if (MtuneLowerCase == "cyclone" ||
StringRef(MtuneLowerCase).starts_with("apple")) {
- Features.push_back("+zcm");
+ Features.push_back("+zcm-gpr64");
----------------
tomershafir wrote:
Yes, I plan to fix that in a future patch. This is just a quick fix.
https://github.com/llvm/llvm-project/pull/146260
More information about the llvm-commits
mailing list