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 88414c8 commit c5d16e7Copy full SHA for c5d16e7
llvm/lib/IR/Verifier.cpp
@@ -3381,7 +3381,7 @@ void Verifier::visitPHINode(PHINode &PN) {
3381
Check(!PN.getType()->isTokenTy(), "PHI nodes cannot have token type!");
3382
3383
// Check that all of the values of the PHI node have the same type as the
3384
- // result, and that the incoming blocks are really basic blocks.
+ // result.
3385
for (Value *IncValue : PN.incoming_values()) {
3386
Check(PN.getType() == IncValue->getType(),
3387
"PHI node operands are not the same type as the result!", &PN);
0 commit comments