[llvm-commits] [llvm] r92180 - /llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Bill Wendling
isanbard at gmail.com
Sun Dec 27 17:02:21 PST 2009
Author: void
Date: Sun Dec 27 19:02:21 2009
New Revision: 92180
URL: http://llvm.org/viewvc/llvm-project?rev=92180&view=rev
Log:
Remove dead variable.
Modified:
llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
Modified: llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp?rev=92180&r1=92179&r2=92180&view=diff
==============================================================================
--- llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp (original)
+++ llvm/trunk/lib/CodeGen/SelectionDAG/FastISel.cpp Sun Dec 27 19:02:21 2009
@@ -548,9 +548,6 @@
/// the CFG.
void
FastISel::FastEmitBranch(MachineBasicBlock *MSucc) {
- MachineFunction::iterator NextMBB =
- llvm::next(MachineFunction::iterator(MBB));
-
if (MBB->isLayoutSuccessor(MSucc)) {
// The unconditional fall-through case, which needs no instructions.
} else {
More information about the llvm-commits
mailing list