diff options
Diffstat (limited to 'llvm/lib/Transforms/Utils/SplitModule.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/SplitModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/SplitModule.cpp b/llvm/lib/Transforms/Utils/SplitModule.cpp index dcb2307..993d3e5 100644 --- a/llvm/lib/Transforms/Utils/SplitModule.cpp +++ b/llvm/lib/Transforms/Utils/SplitModule.cpp @@ -138,7 +138,7 @@ static void findPartitions(Module *M, ClusterIDMapType &ClusterIDMap, typedef std::pair<unsigned, ClusterMapType::iterator> SortType; SmallVector<SortType, 64> Sets; - SmallPtrSet<const GlobalValue *, 64> Visited; + SmallPtrSet<const GlobalValue *, 32> Visited; // To guarantee determinism, we have to sort SCC according to size. // When size is the same, use leader's name. |