forked from OSchip/llvm-project
Fix check. PHI nodes must be handled specially, of course.
llvm-svn: 10842
This commit is contained in:
parent
ec5089a223
commit
02062823f7
|
@ -507,14 +507,15 @@ void Verifier::visitInstruction(Instruction &I) {
|
|||
|
||||
else if (Instruction *Op = dyn_cast<Instruction>(I.getOperand(i))) {
|
||||
BasicBlock *OpBlock = Op->getParent();
|
||||
// Invoke results are only usable in the normal destination, not in the
|
||||
// exceptional destination.
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst>(Op))
|
||||
OpBlock = II->getNormalDest();
|
||||
|
||||
// Check that a definition dominates all of its uses.
|
||||
//
|
||||
if (!isa<PHINode>(I)) {
|
||||
// Invoke results are only usable in the normal destination, not in the
|
||||
// exceptional destination.
|
||||
if (InvokeInst *II = dyn_cast<InvokeInst>(Op))
|
||||
OpBlock = II->getNormalDest();
|
||||
|
||||
// Definition must dominate use unless use is unreachable!
|
||||
Assert2(DS->dominates(OpBlock, BB) ||
|
||||
!DS->dominates(&BB->getParent()->getEntryBlock(), BB),
|
||||
|
|
Loading…
Reference in New Issue