diff options
author | Vladimir Prus <ghost@cs.msu.su> | 2006-06-08 16:03:13 +0000 |
---|---|---|
committer | Vladimir Prus <ghost@cs.msu.su> | 2006-06-08 16:03:13 +0000 |
commit | 28962f353b16f34571b3ed3127f7e17e1c0a76f2 (patch) | |
tree | 3af15da0887084bb7aea03734727bb6b664c5bfa /lib/VMCore/BasicBlock.cpp | |
parent | dd49dbfe44098eb53b1ac29f017e422147572bbb (diff) |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28725 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/BasicBlock.cpp')
-rw-r--r-- | lib/VMCore/BasicBlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/BasicBlock.cpp b/lib/VMCore/BasicBlock.cpp index c93f5584d2..18a90d6b44 100644 --- a/lib/VMCore/BasicBlock.cpp +++ b/lib/VMCore/BasicBlock.cpp @@ -123,7 +123,7 @@ const TerminatorInst *const BasicBlock::getTerminator() const { Instruction* BasicBlock::getFirstNonPHI() { - BasicBlock::iterator i = begin(), e = end(); + BasicBlock::iterator i = begin(); // All valid basic blocks should have a terminator, // which is not a PHINode. If we have invalid basic // block we'll get assert when dereferencing past-the-end |