diff options
-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(); } |