diff options
author | Adrian Prantl <aprantl@apple.com> | 2015-01-22 16:55:20 +0000 |
---|---|---|
committer | Adrian Prantl <aprantl@apple.com> | 2015-01-22 16:55:20 +0000 |
commit | 2585a98d383b7503884b13819ffee4917b5c4694 (patch) | |
tree | c44bbaaf618fd5724efa7da584a9e01a53a4cea9 /llvm/lib/IR/DebugInfo.cpp | |
parent | 438b250d8ae383ee53bf359fd65ec010dc121577 (diff) | |
download | bcm5719-llvm-2585a98d383b7503884b13819ffee4917b5c4694.tar.gz bcm5719-llvm-2585a98d383b7503884b13819ffee4917b5c4694.zip |
Rename DIExpressionIterator to DIExpression::iterator.
Addresses review feedback from Duncan.
llvm-svn: 226835
Diffstat (limited to 'llvm/lib/IR/DebugInfo.cpp')
-rw-r--r-- | llvm/lib/IR/DebugInfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/IR/DebugInfo.cpp b/llvm/lib/IR/DebugInfo.cpp index f7892dd3497..da77c9bb6f9 100644 --- a/llvm/lib/IR/DebugInfo.cpp +++ b/llvm/lib/IR/DebugInfo.cpp @@ -162,12 +162,12 @@ uint64_t DIExpression::getPieceSize() const { return getElement(getNumElements()-1); } -DIExpressionIterator DIExpression::begin() const { - return DIExpressionIterator(*this); +DIExpression::iterator DIExpression::begin() const { + return DIExpression::iterator(*this); } -DIExpressionIterator DIExpression::end() const { - return DIExpressionIterator(); +DIExpression::iterator DIExpression::end() const { + return DIExpression::iterator(); } //===----------------------------------------------------------------------===// |