diff options
author | Chris Lattner <sabre@nondot.org> | 2003-11-25 20:11:00 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2003-11-25 20:11:00 +0000 |
commit | b66214c5ad400facc211970db9423edd32e05871 (patch) | |
tree | 5d61d649049eed8ebd133523eade1554c682cf8b /lib/Analysis | |
parent | 1af55e169396dfa057f0a6067fa8b16eb4317909 (diff) |
Remove dead variable
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10218 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis')
-rw-r--r-- | lib/Analysis/ValueNumbering.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Analysis/ValueNumbering.cpp b/lib/Analysis/ValueNumbering.cpp index 191e190e20..5807546b08 100644 --- a/lib/Analysis/ValueNumbering.cpp +++ b/lib/Analysis/ValueNumbering.cpp @@ -180,7 +180,6 @@ static bool IdenticalComplexInst(const Instruction *I1, const Instruction *I2) { void BVNImpl::visitGetElementPtrInst(GetElementPtrInst &I) { Value *Op = I.getOperand(0); - Function *F = I.getParent()->getParent(); for (Value::use_iterator UI = Op->use_begin(), UE = Op->use_end(); UI != UE; ++UI) |