1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-01-31 12:41:49 +01:00

Provide an interface that is more convenient for iterating over the blocks

in a loop.

llvm-svn: 13052
This commit is contained in:
Chris Lattner 2004-04-18 23:37:03 +00:00
parent ab6502f058
commit 0ce3a74370

View 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.