mirror of
https://github.com/RPCSX/llvm.git
synced 2024-12-02 16:56:50 +00:00
Fix a typo, which should also fix the failure on llvm-x86_64-linux-checks.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122687 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
cf078f2b20
commit
a4d93162cb
@ -196,7 +196,7 @@ void Calculate(DominatorTreeBase<typename GraphTraits<NodeT>::NodeType>& DT,
|
||||
MultipleRoots |= (DT.isPostDominator() && N != F.size());
|
||||
|
||||
std::vector<unsigned> Buckets;
|
||||
Buckets.reserve(N + 1);
|
||||
Buckets.resize(N + 1);
|
||||
for (unsigned i = 1; i <= N; ++i)
|
||||
Buckets[i] = i;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user