diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2010-10-23 17:10:24 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2010-10-23 17:10:24 +0000 |
commit | a53fe6070cae7d2feccb542b8ba24b37d3fdd027 (patch) | |
tree | 44a7b9bee3e3560e0600ce2588ec4f57ff44aaa3 /include | |
parent | a4633f5d7458f4d04e4bf89be48d3b14e1fae044 (diff) | |
download | external_llvm-a53fe6070cae7d2feccb542b8ba24b37d3fdd027.zip external_llvm-a53fe6070cae7d2feccb542b8ba24b37d3fdd027.tar.gz external_llvm-a53fe6070cae7d2feccb542b8ba24b37d3fdd027.tar.bz2 |
SmallVectorize.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117213 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/Analysis/DominatorInternals.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Analysis/DominatorInternals.h b/include/llvm/Analysis/DominatorInternals.h index 0419688..654289e 100644 --- a/include/llvm/Analysis/DominatorInternals.h +++ b/include/llvm/Analysis/DominatorInternals.h @@ -116,7 +116,7 @@ unsigned DFSPass(DominatorTreeBase<typename GraphT::NodeType>& DT, template<class GraphT> void Compress(DominatorTreeBase<typename GraphT::NodeType>& DT, typename GraphT::NodeType *VIn) { - std::vector<typename GraphT::NodeType*> Work; + SmallVector<typename GraphT::NodeType*, 32> Work; SmallPtrSet<typename GraphT::NodeType*, 32> Visited; typename DominatorTreeBase<typename GraphT::NodeType>::InfoRec &VInVAInfo = DT.Info[DT.Vertex[DT.Info[VIn].Ancestor]]; |