[llvm] [SVE] Wide active lane mask (PR #76514)
Momchil Velikov via llvm-commits
llvm-commits at lists.llvm.org
Wed Jan 17 09:15:08 PST 2024
================
@@ -1772,15 +1772,17 @@ void AArch64TargetLowering::addTypeForNEON(MVT VT) {
bool AArch64TargetLowering::shouldExpandGetActiveLaneMask(EVT ResVT,
EVT OpVT) const {
- // Only SVE has a 1:1 mapping from intrinsic -> instruction (whilelo).
- if (!Subtarget->hasSVE())
+ // Only SVE/SME has a 1:1 mapping from intrinsic -> instruction (whilelo).
+ if (!Subtarget->hasSVEorSME())
----------------
momchil-velikov wrote:
Ack
https://github.com/llvm/llvm-project/pull/76514
More information about the llvm-commits
mailing list