diff options
author | Dan Gohman <gohman@apple.com> | 2010-04-14 15:33:04 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-04-14 15:33:04 +0000 |
commit | 0118b8d86d46322c500e795df301fe99cc8725df (patch) | |
tree | eb635bfa89a50a59946832bcf398a4b40c5a3544 | |
parent | be10811323f1cc5386abe6d99d36653a5b1f729d (diff) |
Make helper utility members private.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@101243 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Support/CFG.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/llvm/Support/CFG.h b/include/llvm/Support/CFG.h index 57699c7088..717802f6db 100644 --- a/include/llvm/Support/CFG.h +++ b/include/llvm/Support/CFG.h @@ -29,10 +29,8 @@ template <class _Ptr, class _USE_iterator> // Predecessor Iterator class PredIterator : public std::iterator<std::forward_iterator_tag, _Ptr, ptrdiff_t> { typedef std::iterator<std::forward_iterator_tag, _Ptr, ptrdiff_t> super; - _USE_iterator It; -public: typedef PredIterator<_Ptr,_USE_iterator> _Self; - typedef typename super::pointer pointer; + _USE_iterator It; inline void advancePastNonTerminators() { // Loop to ignore non terminator uses (for example PHI nodes)... @@ -40,6 +38,9 @@ public: ++It; } +public: + typedef typename super::pointer pointer; + inline PredIterator(_Ptr *bb) : It(bb->use_begin()) { advancePastNonTerminators(); } |