fpetrogalli marked an inline comment as done. fpetrogalli added inline comments.
================ Comment at: llvm/lib/Transforms/Coroutines/CoroFrame.cpp:589 sort(FrameData.Allocas, [&](const auto &Iter1, const auto &Iter2) { - return GetAllocaSize(Iter1) > GetAllocaSize(Iter2); + return TypeSize::isKnownGT(GetAllocaSize(Iter1), GetAllocaSize(Iter2)); }); ---------------- We don't need to check whether the scalable flag matches here because we are sorting a container that (potentially) have both types of vectors. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D91806/new/ https://reviews.llvm.org/D91806 _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits