Provide an interface that is more convenient for iterating over the blocks
authorChris Lattner <sabre@nondot.org>
Sun, 18 Apr 2004 23:37:03 +0000 (23:37 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Apr 2004 23:37:03 +0000 (23:37 +0000)
in a loop.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@13052 91177308-0d34-0410-b5e6-96231b3b80d8

include/llvm/Analysis/LoopInfo.h

index b85291f5516a1524f926e9632efbeed683599187..5529be3929ee03ed390f7b958a37f1a4d6c969f8 100644 (file)
@@ -74,6 +74,9 @@ public:
   /// getBlocks - Get a list of the basic blocks which make up this loop.
   ///
   const std::vector<BasicBlock*> &getBlocks() const { return Blocks; }
+  typedef std::vector<BasicBlock*>::const_iterator block_iterator;
+  block_iterator block_begin() const { return Blocks.begin(); }
+  block_iterator block_end() const { return Blocks.end(); }
 
   /// isLoopExit - True if terminator in the block can branch to another block
   /// that is outside of the current loop.