[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 04:06: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:
@alexey-bataev What do you think about this comment?
https://github.com/llvm/llvm-project/pull/151112
More information about the llvm-commits
mailing list