Sets insertion point of fake cond branch to the last phi node in the block
[oota-llvm.git] / lib / IR / Verifier.cpp
index c8f99c5b4ccbe7143236c287772b1778816d7701..37b56f8efc769aa21cf0a96a2a13b9e899948714 100644 (file)
@@ -1974,6 +1974,10 @@ void Verifier::visitBasicBlock(BasicBlock &BB) {
              "PHI nodes must have at least one entry.  If the block is dead, "
              "the PHI should be removed!",
              PN);
+      if (PN->getNumIncomingValues() != Preds.size()) {
+        dbgs() << "Problematic function: \n" << *PN->getParent()->getParent() << "\n";
+        dbgs() << "Problematic block: \n" << *PN->getParent() << "\n";
+      }
       Assert(PN->getNumIncomingValues() == Preds.size(),
              "PHINode should have one entry for each predecessor of its "
              "parent basic block!",