diff options
author | Chad Rosier <mcrosier@apple.com> | 2012-02-22 17:25:00 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2012-02-22 17:25:00 +0000 |
commit | 90f20044ade3712c8b0c3f4ebe47d57ad15ae6ce (patch) | |
tree | 3c4fb7488291e4e2602d3554fa5bbe661eb812ec /lib/CodeGen/BranchFolding.cpp | |
parent | 91ba63d230bfc3e035d2851d039e08f34f0b9bbd (diff) |
Remove extra semi-colons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@151169 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/BranchFolding.cpp')
-rw-r--r-- | lib/CodeGen/BranchFolding.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/CodeGen/BranchFolding.cpp b/lib/CodeGen/BranchFolding.cpp index 6aa170b536..272e9f93dc 100644 --- a/lib/CodeGen/BranchFolding.cpp +++ b/lib/CodeGen/BranchFolding.cpp @@ -1111,7 +1111,7 @@ ReoptimizeBlock: } } PrevBB.splice(PrevBB.end(), MBB, MBB->begin(), MBB->end()); - PrevBB.removeSuccessor(PrevBB.succ_begin());; + PrevBB.removeSuccessor(PrevBB.succ_begin()); assert(PrevBB.succ_empty()); PrevBB.transferSuccessors(MBB); MadeChange = true; @@ -1670,7 +1670,7 @@ bool BranchFolder::HoistCommonCodeInSuccs(MachineBasicBlock *MBB) { LocalDefsSet.insert(*OR); } - HasDups = true;; + HasDups = true; ++TIB; ++FIB; } |