From b60e0815dfe7169255a92957ca8fc96ed866b85e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 23 Sep 2005 18:49:09 +0000 Subject: [PATCH] remove some debugging code git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23411 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Transforms/Utils/SimplifyCFG.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index 0473000747f..ba6ce17087b 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -990,7 +990,6 @@ static bool FoldCondBranchOnPHI(BranchInst *BI) { // Check for trivial simplification. if (Constant *C = ConstantFoldInstruction(N)) { - std::cerr << "FOLDED: " << *N; TranslateMap[BBI] = C; delete N; // Constant folded away, don't need actual inst } else {