[llvm-commits] [llvm] r86642 - /llvm/trunk/lib/CodeGen/BranchFolding.cpp
Dan Gohman
gohman at apple.com
Mon Nov 9 17:37:58 PST 2009
Author: djg
Date: Mon Nov 9 19:37:57 2009
New Revision: 86642
URL: http://llvm.org/viewvc/llvm-project?rev=86642&view=rev
Log:
Remove an unused variable.
Modified:
llvm/trunk/lib/CodeGen/BranchFolding.cpp
Modified: llvm/trunk/lib/CodeGen/BranchFolding.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/BranchFolding.cpp?rev=86642&r1=86641&r2=86642&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/BranchFolding.cpp (original)
+++ llvm/trunk/lib/CodeGen/BranchFolding.cpp Mon Nov 9 19:37:57 2009
@@ -1179,7 +1179,6 @@
// 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,
More information about the llvm-commits
mailing list