diff options
author | Gabor Greif <ggreif@gmail.com> | 2010-03-25 23:06:16 +0000 |
---|---|---|
committer | Gabor Greif <ggreif@gmail.com> | 2010-03-25 23:06:16 +0000 |
commit | c78d720f023093b3b59d7bde30c96f18dedb5b53 (patch) | |
tree | 7f9952c4c9344fa27763432e5df6c902f83e957e /llvm/lib/Analysis/LiveValues.cpp | |
parent | d821f4ac60e0a6228f73e74bed0c2aa6578e6d39 (diff) | |
download | bcm5719-llvm-c78d720f023093b3b59d7bde30c96f18dedb5b53.tar.gz bcm5719-llvm-c78d720f023093b3b59d7bde30c96f18dedb5b53.zip |
rename use_const_iterator to const_use_iterator for consistency's sake
llvm-svn: 99564
Diffstat (limited to 'llvm/lib/Analysis/LiveValues.cpp')
-rw-r--r-- | llvm/lib/Analysis/LiveValues.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Analysis/LiveValues.cpp b/llvm/lib/Analysis/LiveValues.cpp index 1b91d93c0e1..23964ffc457 100644 --- a/llvm/lib/Analysis/LiveValues.cpp +++ b/llvm/lib/Analysis/LiveValues.cpp @@ -125,7 +125,7 @@ LiveValues::Memo &LiveValues::compute(const Value *V) { bool LiveOutOfDefBB = false; // Examine each use of the value. - for (Value::use_const_iterator I = V->use_begin(), E = V->use_end(); + for (Value::const_use_iterator I = V->use_begin(), E = V->use_end(); I != E; ++I) { const User *U = *I; const BasicBlock *UseBB = cast<Instruction>(U)->getParent(); |