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 04dd22e commit 513f5ddCopy full SHA for 513f5dd
llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
@@ -176,6 +176,10 @@ bool VPlanVerifier::verifyEVLRecipe(const VPInstruction &EVL) const {
176
return VerifyEVLUse(*I, 3);
177
}
178
})
179
+ .Case<VPWidenIntrinsicRecipe>(
180
+ [&](const VPWidenIntrinsicRecipe *I) {
181
+ return VerifyEVLUse(*I, I->getNumOperands() - 1);
182
+ })
183
.Default([&](const VPUser *U) {
184
errs() << "EVL has unexpected user\n";
185
return false;
0 commit comments