diff options
author | Hongbin Zheng <etherzhhb@gmail.com> | 2012-08-27 13:49:24 +0000 |
---|---|---|
committer | Hongbin Zheng <etherzhhb@gmail.com> | 2012-08-27 13:49:24 +0000 |
commit | 23a22a29441b8b7d948e6ff7c2afb39e6528cfbd (patch) | |
tree | 0bb4504427bfc0b72c531a3ebb1eb25ebfd21baf /include | |
parent | 3b4998fd8bb0c9e6c0c0a5cfc79cf4df0b0d75f7 (diff) | |
download | external_llvm-23a22a29441b8b7d948e6ff7c2afb39e6528cfbd.zip external_llvm-23a22a29441b8b7d948e6ff7c2afb39e6528cfbd.tar.gz external_llvm-23a22a29441b8b7d948e6ff7c2afb39e6528cfbd.tar.bz2 |
Remove the the block_node_iterator of Region, replace it by the block_iterator.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162672 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/RegionInfo.h | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/include/llvm/Analysis/RegionInfo.h b/include/llvm/Analysis/RegionInfo.h index 188d11c..e62040e 100644 --- a/include/llvm/Analysis/RegionInfo.h +++ b/include/llvm/Analysis/RegionInfo.h @@ -473,27 +473,6 @@ public: const_iterator end() const { return children.end(); } //@} - /// @name BasicBlock Node Iterators - /// - /// These iterators iterate over all BasicBlock RegionNodes that are - /// contained in this Region. The iterator also iterates over BasicBlock - /// RegionNodes that are elements of a subregion of this Region. It is - /// therefore called a flat iterator. - //@{ - typedef df_iterator<RegionNode*, SmallPtrSet<RegionNode*, 8>, false, - GraphTraits<FlatIt<RegionNode*> > > block_node_iterator; - - typedef df_iterator<const RegionNode*, SmallPtrSet<const RegionNode*, 8>, - false, GraphTraits<FlatIt<const RegionNode*> > > - const_block_node_iterator; - - block_node_iterator block_node_begin(); - block_node_iterator block_node_end(); - - const_block_node_iterator block_node_begin() const; - const_block_node_iterator block_node_end() const; - //@} - /// @name BasicBlock Iterators /// /// These iterators iterate over all BasicBlocks that are contained in this |