[llvm] [VectorUtils] Simplify the code by new function InterleaveGroup::isFull. nfc (PR #151112)
Mel Chen via llvm-commits
llvm-commits at lists.llvm.org
Wed Jul 30 23:32:57 PDT 2025
================
@@ -633,6 +633,9 @@ template <typename InstTy> class InterleaveGroup {
return true;
}
+ /// Return true if the group has no gaps.
+ bool isFull() const { return getNumMembers() == getFactor(); }
----------------
Mel-Chen wrote:
5e2136e5a0ff8bd8e028826bae9a73234163a27c
https://github.com/llvm/llvm-project/pull/151112
More information about the llvm-commits
mailing list