OSDN Git Service

[Utils] Remove commented debug message. NFCI.
authorDavide Italiano <davide@freebsd.org>
Sun, 31 Dec 2017 16:48:44 +0000 (16:48 +0000)
committerDavide Italiano <davide@freebsd.org>
Sun, 31 Dec 2017 16:48:44 +0000 (16:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@321604 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/Local.cpp

index a1961ee..cfbe11e 100644 (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);