diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-07-22 13:36:47 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-07-22 13:36:47 +0000 |
commit | e035519df392f87833b9f18e113129f55d90a7b7 (patch) | |
tree | 86a40f3abd0a781fd38106bc6f9b3137ccab1787 /lib/Transforms/Scalar/LoopIndexSplit.cpp | |
parent | b0464a9768de385a0902c9454affd8a407755f64 (diff) | |
download | external_llvm-e035519df392f87833b9f18e113129f55d90a7b7.tar.gz external_llvm-e035519df392f87833b9f18e113129f55d90a7b7.tar.bz2 external_llvm-e035519df392f87833b9f18e113129f55d90a7b7.zip |
mass elimination of reliance on automatic iterator dereferencing
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109103 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/LoopIndexSplit.cpp')
-rw-r--r-- | lib/Transforms/Scalar/LoopIndexSplit.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/LoopIndexSplit.cpp b/lib/Transforms/Scalar/LoopIndexSplit.cpp index c3a387071d..2a52c99a59 100644 --- a/lib/Transforms/Scalar/LoopIndexSplit.cpp +++ b/lib/Transforms/Scalar/LoopIndexSplit.cpp @@ -1183,7 +1183,7 @@ bool LoopIndexSplit::cleanBlock(BasicBlock *BB) { bool usedOutsideBB = false; for (Value::use_iterator UI = I->use_begin(), UE = I->use_end(); UI != UE; ++UI) { - Instruction *U = cast<Instruction>(UI); + Instruction *U = cast<Instruction>(*UI); if (U->getParent() != BB) usedOutsideBB = true; } |