From: Dan Gohman Date: Thu, 3 Sep 2009 20:36:13 +0000 (+0000) Subject: Smallvectorize switchExitBlocks. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=058db9287ab358dc609d0ed47f6027769ea72006;p=oota-llvm.git Smallvectorize switchExitBlocks. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@80942 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Analysis/LoopInfo.cpp b/lib/Analysis/LoopInfo.cpp index 94dc1541134..10806eb36a4 100644 --- a/lib/Analysis/LoopInfo.cpp +++ b/lib/Analysis/LoopInfo.cpp @@ -308,7 +308,7 @@ Loop::getUniqueExitBlocks(SmallVectorImpl &ExitBlocks) const { SmallVector LoopBBs(block_begin(), block_end()); std::sort(LoopBBs.begin(), LoopBBs.end()); - std::vector switchExitBlocks; + SmallVector switchExitBlocks; for (block_iterator BI = block_begin(), BE = block_end(); BI != BE; ++BI) {