[llvm-commits] CVS: llvm/lib/Transforms/Utils/SimplifyCFG.cpp
Chris Lattner
lattner at cs.uiuc.edu
Sun May 14 11:34:11 PDT 2006
Changes in directory llvm/lib/Transforms/Utils:
SimplifyCFG.cpp updated: 1.95 -> 1.96
---
Log message:
remove dead variables
---
Diffs of the changes: (+0 -2)
SimplifyCFG.cpp | 2 --
1 files changed, 2 deletions(-)
Index: llvm/lib/Transforms/Utils/SimplifyCFG.cpp
diff -u llvm/lib/Transforms/Utils/SimplifyCFG.cpp:1.95 llvm/lib/Transforms/Utils/SimplifyCFG.cpp:1.96
--- llvm/lib/Transforms/Utils/SimplifyCFG.cpp:1.95 Fri Feb 17 18:33:17 2006
+++ llvm/lib/Transforms/Utils/SimplifyCFG.cpp Sun May 14 13:33:57 2006
@@ -901,8 +901,6 @@
/// across this block.
static bool BlockIsSimpleEnoughToThreadThrough(BasicBlock *BB) {
BranchInst *BI = cast<BranchInst>(BB->getTerminator());
- Value *Cond = BI->getCondition();
-
unsigned Size = 0;
// If this basic block contains anything other than a PHI (which controls the
More information about the llvm-commits
mailing list