diff options
author | Dan Gohman <gohman@apple.com> | 2009-11-10 01:37:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-11-10 01:37:57 +0000 |
commit | 42cc1806d863d42ed4d58d28e52ea99971bce07b (patch) | |
tree | 770f25cf5b26c1533debeb8a69eb0f0f98b15b3b /llvm/lib/CodeGen/BranchFolding.cpp | |
parent | 48079d4bf579539ca8a5ade6ad25c6478efec6d0 (diff) | |
download | bcm5719-llvm-42cc1806d863d42ed4d58d28e52ea99971bce07b.tar.gz bcm5719-llvm-42cc1806d863d42ed4d58d28e52ea99971bce07b.zip |
Remove an unused variable.
llvm-svn: 86642
Diffstat (limited to 'llvm/lib/CodeGen/BranchFolding.cpp')
-rw-r--r-- | llvm/lib/CodeGen/BranchFolding.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/BranchFolding.cpp b/llvm/lib/CodeGen/BranchFolding.cpp index b094eefb302..f0f01fa301b 100644 --- a/llvm/lib/CodeGen/BranchFolding.cpp +++ b/llvm/lib/CodeGen/BranchFolding.cpp @@ -1179,7 +1179,6 @@ bool BranchFolder::OptimizeBlock(MachineBasicBlock *MBB) { // Analyze the branch at the end of the block before the succ. MachineBasicBlock *SuccBB = *SI; MachineFunction::iterator SuccPrev = SuccBB; --SuccPrev; - std::vector<MachineOperand> SuccPrevCond; // If this block doesn't already fall-through to that successor, and if // the succ doesn't already have a block that can fall through into it, |