diff options
author | Dan Gohman <gohman@apple.com> | 2009-11-09 18:20:38 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-11-09 18:20:38 +0000 |
commit | d146e986c818165cca866ee05751451706ccf36a (patch) | |
tree | 343e65cc981585cdf4e17c3061a0ed04e5a45901 | |
parent | 81d893ccf2e8eb73cc1d5ff4b75e9e502ff939bd (diff) |
Fix an 80-column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@86567 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/Analysis/LoopInfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/llvm/Analysis/LoopInfo.h b/include/llvm/Analysis/LoopInfo.h index ac565c703f..6504bdce42 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -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; |