remove some debugging code
authorChris Lattner <sabre@nondot.org>
Fri, 23 Sep 2005 18:49:09 +0000 (18:49 +0000)
committerChris Lattner <sabre@nondot.org>
Fri, 23 Sep 2005 18:49:09 +0000 (18:49 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@23411 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Utils/SimplifyCFG.cpp

index 0473000747fa2acb8f4140515e689a60eca7c2cb..ba6ce17087bc61965039636ca716c6f32b72ef9f 100644 (file)
@@ -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 {