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 | c3de7c4ec2dd493b3fe433040c89174f5a3420e6 (patch) | |
tree | 227f226a2f0309f0137d8e015a91db167080ba8e /llvm/lib/Analysis/ValueNumbering.cpp | |
parent | 388bc98954cc26be0b271a6b9f5fedd51ec7dd03 (diff) | |
download | bcm5719-llvm-c3de7c4ec2dd493b3fe433040c89174f5a3420e6.tar.gz bcm5719-llvm-c3de7c4ec2dd493b3fe433040c89174f5a3420e6.zip |
Remove dead variable
llvm-svn: 10218
Diffstat (limited to 'llvm/lib/Analysis/ValueNumbering.cpp')
-rw-r--r-- | llvm/lib/Analysis/ValueNumbering.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/ValueNumbering.cpp b/llvm/lib/Analysis/ValueNumbering.cpp index 191e190e20e..5807546b08a 100644 --- a/llvm/lib/Analysis/ValueNumbering.cpp +++ b/llvm/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) |