From af7855d571233b8651875c9f24d46c4b7df77bbc Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 12 Jan 2010 02:07:50 +0000 Subject: tidy up llvm-svn: 93222 --- llvm/lib/Transforms/Scalar/JumpThreading.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'llvm/lib/Transforms') diff --git a/llvm/lib/Transforms/Scalar/JumpThreading.cpp b/llvm/lib/Transforms/Scalar/JumpThreading.cpp index f0468738d58..edb0412bfe1 100644 --- a/llvm/lib/Transforms/Scalar/JumpThreading.cpp +++ b/llvm/lib/Transforms/Scalar/JumpThreading.cpp @@ -1175,11 +1175,7 @@ bool JumpThreading::ProcessBranchOnXOR(BinaryOperator *BO) { } // Try to duplicate BB into PredBB. - if (DuplicateCondBranchOnPHIIntoPred(BB, BlocksToFoldInto)) { -// errs() << "CLONE XOR COND: " << *BB << "Into PRED: " << *BlocksToFoldInto[0]; - return true; - } - return false; + return DuplicateCondBranchOnPHIIntoPred(BB, BlocksToFoldInto); } -- cgit v1.2.3