[llvm] [VPlan] Add VPIRInstruction, use for exit block live-outs. (PR #100735)

Florian Hahn via llvm-commits llvm-commits at lists.llvm.org
Sat Sep 14 12:43:07 PDT 2024


================
@@ -126,6 +126,17 @@ bool VPlanVerifier::verifyVPBasicBlock(const VPBasicBlock *VPBB) {
     RecipeNumbering[&R] = Cnt++;
 
   for (const VPRecipeBase &R : *VPBB) {
+    if (auto *IRI = dyn_cast<VPIRInstruction>(&R)) {
+      if (!isa<VPIRBasicBlock>(IRI->getParent())) {
----------------
fhahn wrote:

Done, thanks!

https://github.com/llvm/llvm-project/pull/100735


More information about the llvm-commits mailing list