1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 19:52:54 +01:00

Fix an 80-column violation.

llvm-svn: 86567
This commit is contained in:
Dan Gohman 2009-11-09 18:20:38 +00:00
parent 68d528963c
commit 141625abc4

View File

@ -114,8 +114,8 @@ public:
block_iterator block_begin() const { return Blocks.begin(); }
block_iterator block_end() const { return Blocks.end(); }
/// isLoopExiting - True if terminator in the block can branch to another block
/// that is outside of the current loop.
/// isLoopExiting - True if terminator in the block can branch to another
/// block that is outside of the current loop.
///
bool isLoopExiting(const BlockT *BB) const {
typedef GraphTraits<BlockT*> BlockTraits;