aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-10-19 06:33:16 +0000
committerChris Lattner <sabre@nondot.org>2004-10-19 06:33:16 +0000
commit3fd0e55de152af11952b64e495e35d2fb3468e43 (patch)
treeee95fc9f50778fb513a4af4f4fcdb28a6572bbd7
parent3567a413075d47ebc2b02063fbeae70d3ecf84d2 (diff)
downloadexternal_llvm-3fd0e55de152af11952b64e495e35d2fb3468e43.zip
external_llvm-3fd0e55de152af11952b64e495e35d2fb3468e43.tar.gz
external_llvm-3fd0e55de152af11952b64e495e35d2fb3468e43.tar.bz2
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
-rw-r--r--lib/Transforms/Scalar/SimplifyCFG.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/SimplifyCFG.cpp b/lib/Transforms/Scalar/SimplifyCFG.cpp
index af1663c..88b625b 100644
--- a/lib/Transforms/Scalar/SimplifyCFG.cpp
+++ b/lib/Transforms/Scalar/SimplifyCFG.cpp
@@ -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; ) {