We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8c277a commit 793c4c3Copy full SHA for 793c4c3
llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
@@ -180,6 +180,10 @@ bool VPlanVerifier::verifyEVLRecipe(const VPInstruction &EVL) const {
180
return VerifyEVLUse(*I, 3);
181
}
182
})
183
+ .Case<VPWidenIntrinsicRecipe>(
184
+ [&](const VPWidenIntrinsicRecipe *I) {
185
+ return VerifyEVLUse(*I, I->getNumOperands() - 1);
186
+ })
187
.Default([&](const VPUser *U) {
188
errs() << "EVL has unexpected user\n";
189
return false;
0 commit comments