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 c47a573 commit 6338bdeCopy full SHA for 6338bde
llvm/lib/Transforms/Vectorize/VPlanVerifier.cpp
@@ -206,7 +206,7 @@ bool VPlanVerifier::verifyVPBasicBlock(const VPBasicBlock *VPBB) {
206
}
207
208
for (const VPUser *U : V->users()) {
209
- auto *UI = dyn_cast<VPRecipeBase>(U);
+ auto *UI = cast<VPRecipeBase>(U);
210
// TODO: check dominance of incoming values for phis properly.
211
if (!UI ||
212
isa<VPHeaderPHIRecipe, VPWidenPHIRecipe, VPPredInstPHIRecipe>(UI))
0 commit comments