[llvm] [LoopVectorize] Enable vectorisation of early exit loops with live-outs (PR #120567)
David Sherwood via llvm-commits
llvm-commits at lists.llvm.org
Tue Jan 21 06:42:04 PST 2025
================
@@ -306,6 +306,24 @@ template <> struct GraphTraits<VPlan *> {
}
};
+inline bool VPlan::isExitBlock(VPBlockBase *VPBB) {
+ if (!isa<VPIRBasicBlock>(VPBB) || VPBB->getNumSuccessors() ||
----------------
david-arm wrote:
Sorry I don't know what's going on here. Not sure if it's my fault that it's editing your comment, or something weird in github?
https://github.com/llvm/llvm-project/pull/120567
More information about the llvm-commits
mailing list