commit | 797c440caf24e92b16b9a87a39ef2f5c4cfb60f0 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Tue Jan 12 02:07:50 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Tue Jan 12 02:07:50 2010 +0000 |
tree | 6f51b0d96f57f0da0c435187906d3fad1eac0207 | |
parent | 2249a0b1bd0941e61c0b87f2f64a5c8cab45f14c [diff] [blame] |
tidy up git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93222 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Transforms/Scalar/JumpThreading.cpp b/lib/Transforms/Scalar/JumpThreading.cpp index f046873..edb0412 100644 --- a/lib/Transforms/Scalar/JumpThreading.cpp +++ b/lib/Transforms/Scalar/JumpThreading.cpp
@@ -1175,11 +1175,7 @@ } // 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); }