diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-05-23 22:12:50 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-05-23 22:12:50 +0000 |
commit | dbb4e57a3c7fb18d5ff2d9504c5cacb5df20fab4 (patch) | |
tree | 398707c502e62df3933801d1b62e6d064373ea67 /lib/CodeGen/BranchFolding.cpp | |
parent | 20350db44807f6863c3c00345934d45763ed21d3 (diff) |
Forgot to reverse conditional.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@157349 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/BranchFolding.cpp')
-rw-r--r-- | lib/CodeGen/BranchFolding.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp index dc786a21f9..2e978b333e 100644 --- a/lib/CodeGen/BranchFolding.cpp +++ b/lib/CodeGen/BranchFolding.cpp @@ -863,7 +863,7 @@ bool BranchFolder::TailMergeBlocks(MachineFunction &MF) { for (MachineFunction::iterator I = llvm::next(MF.begin()), E = MF.end(); I != E; ++I) { - if (I->pred_size() >= 2) continue; + if (I->pred_size() < 2) continue; SmallPtrSet<MachineBasicBlock *, 8> UniquePreds; MachineBasicBlock *IBB = I; MachineBasicBlock *PredBB = prior(I); |