diff options
| author | Devang Patel <dpatel@apple.com> | 2007-08-21 16:39:43 +0000 |
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2007-08-21 16:39:43 +0000 |
| commit | a9e7c4f827c1ff0f89c585ed6bbd096dd61e76d1 (patch) | |
| tree | 6774be236699a773a715586b6fb7cf7a5c359e2d /llvm/lib | |
| parent | 18444b9660716b4a034d1f02fdf5301511fd52ba (diff) | |
| download | bcm5719-llvm-a9e7c4f827c1ff0f89c585ed6bbd096dd61e76d1.tar.gz bcm5719-llvm-a9e7c4f827c1ff0f89c585ed6bbd096dd61e76d1.zip | |
No need to hardcode SmallVector size.
llvm-svn: 41228
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Analysis/LoopInfo.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Analysis/LoopInfo.cpp b/llvm/lib/Analysis/LoopInfo.cpp index 877bd4ae676..e479edc6473 100644 --- a/llvm/lib/Analysis/LoopInfo.cpp +++ b/llvm/lib/Analysis/LoopInfo.cpp @@ -350,7 +350,7 @@ void LoopInfo::removeBlock(BasicBlock *BB) { /// outside of the loop. These are the blocks _inside of the current loop_ /// which branch out. The returned list is always unique. /// -void Loop::getExitingBlocks(SmallVector<BasicBlock*, 8> &ExitingBlocks) const { +void Loop::getExitingBlocks(SmallVectorImpl<BasicBlock*> &ExitingBlocks) const { // Sort the blocks vector so that we can use binary search to do quick // lookups. std::vector<BasicBlock*> LoopBBs(block_begin(), block_end()); @@ -369,7 +369,7 @@ void Loop::getExitingBlocks(SmallVector<BasicBlock*, 8> &ExitingBlocks) const { /// getExitBlocks - Return all of the successor blocks of this loop. These /// are the blocks _outside of the current loop_ which are branched to. /// -void Loop::getExitBlocks(SmallVector<BasicBlock*, 8> &ExitBlocks) const { +void Loop::getExitBlocks(SmallVectorImpl<BasicBlock*> &ExitBlocks) const { // Sort the blocks vector so that we can use binary search to do quick // lookups. std::vector<BasicBlock*> LoopBBs(block_begin(), block_end()); @@ -387,7 +387,7 @@ void Loop::getExitBlocks(SmallVector<BasicBlock*, 8> &ExitBlocks) const { /// are the blocks _outside of the current loop_ which are branched to. This /// assumes that loop is in canonical form. // -void Loop::getUniqueExitBlocks(SmallVector<BasicBlock*, 8> &ExitBlocks) const { +void Loop::getUniqueExitBlocks(SmallVectorImpl<BasicBlock*> &ExitBlocks) const { // Sort the blocks vector so that we can use binary search to do quick // lookups. std::vector<BasicBlock*> LoopBBs(block_begin(), block_end()); |

