[Utils] Remove commented debug message. NFCI.

llvm-svn: 321604
This commit is contained in:
Davide Italiano 2017-12-31 16:48:44 +00:00
parent 9f074fe915
commit 5dd1c587e7
1 changed files with 0 additions and 4 deletions

View File

@ -116,10 +116,6 @@ bool llvm::ConstantFoldTerminator(BasicBlock *BB, bool DeleteDeadConditions,
BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2;
BasicBlock *OldDest = Cond->getZExtValue() ? Dest2 : Dest1;
//cerr << "Function: " << T->getParent()->getParent()
// << "\nRemoving branch from " << T->getParent()
// << "\n\nTo: " << OldDest << endl;
// Let the basic block know that we are letting go of it. Based on this,
// it will adjust it's PHI nodes.
OldDest->removePredecessor(BB);