[llvm] [GlobalISel][AArch64] Legalize G_UADDSAT, G_SADDSAT, G_USUBSAT, and G… (PR #114664)
Thorsten Schütt via llvm-commits
llvm-commits at lists.llvm.org
Sun Nov 3 21:10:27 PST 2024
================
@@ -204,6 +204,8 @@ LegalityPredicate LegalityPredicates::memSizeInBytesNotPow2(unsigned MMOIdx) {
LegalityPredicate LegalityPredicates::memSizeNotByteSizePow2(unsigned MMOIdx) {
return [=](const LegalityQuery &Query) {
const LLT MemTy = Query.MMODescrs[MMOIdx].MemoryTy;
+ if (Query.MMODescrs[MMOIdx].MemoryTy.isScalableVector())
+ return true;
----------------
tschuett wrote:
Nope. Probably left over from debugging.
https://github.com/llvm/llvm-project/pull/114664
More information about the llvm-commits
mailing list