diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-03-09 05:24:34 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-03-09 05:24:34 +0000 |
commit | 529de8a45702cd34968d79d13f95ed1e5d5fa250 (patch) | |
tree | 31fa91f8bc4b9823103028f53a42918b300e285f /include/llvm/Analysis | |
parent | 6af31aab63583e61b7c7b51bc285541750bd834f (diff) | |
download | external_llvm-529de8a45702cd34968d79d13f95ed1e5d5fa250.zip external_llvm-529de8a45702cd34968d79d13f95ed1e5d5fa250.tar.gz external_llvm-529de8a45702cd34968d79d13f95ed1e5d5fa250.tar.bz2 |
Update the block cloner which fixes bugpoint on code using unwind_to (phew!)
and also update the cloning interface's major user, the loop optimizations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48088 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Analysis')
-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 789b904..29781b2 100644 --- a/include/llvm/Analysis/LoopInfo.h +++ b/include/llvm/Analysis/LoopInfo.h @@ -118,8 +118,8 @@ public: 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. + /// isLoopExit - True if this block can branch to another block that is + /// outside of the current loop. /// bool isLoopExit(const BlockT *BB) const { typedef GraphTraits<BlockT*> BlockTraits; |