From 3fd0e55de152af11952b64e495e35d2fb3468e43 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 19 Oct 2004 06:33:16 +0000 Subject: [PATCH] Hrm, some people complain when the compiler cheerfully tells them what it's 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 | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Transforms/Scalar/SimplifyCFG.cpp b/lib/Transforms/Scalar/SimplifyCFG.cpp index af1663c8dbf..88b625becf9 100644 --- a/lib/Transforms/Scalar/SimplifyCFG.cpp +++ b/lib/Transforms/Scalar/SimplifyCFG.cpp @@ -60,7 +60,6 @@ static bool MarkAliveBlocks(BasicBlock *BB, std::set &Reachable) { (*I)->removePredecessor(BB); new UnreachableInst(SI); - std::cerr << "Inserted UNREACHABLE instruction!\n"; // All instructions after this are dead. for (; BBI != E; ) {