Hrm, some people complain when the compiler cheerfully tells them what it's
authorChris Lattner <sabre@nondot.org>
Tue, 19 Oct 2004 06:33:16 +0000 (06:33 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 19 Oct 2004 06:33:16 +0000 (06:33 +0000)
doing... I guess they're right.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17142 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/SimplifyCFG.cpp

index af1663c8dbf6250412221b1e82fc283e15f821fc..88b625becf9e04d40d04ef103fe1a807ad3ed144 100644 (file)
@@ -60,7 +60,6 @@ static bool MarkAliveBlocks(BasicBlock *BB, std::set<BasicBlock*> &Reachable) {
           (*I)->removePredecessor(BB);
 
         new UnreachableInst(SI);
-        std::cerr << "Inserted UNREACHABLE instruction!\n";
 
         // All instructions after this are dead.
         for (; BBI != E; ) {