mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-04 21:30:49 +00:00
Use size_t for consistency.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116009 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
dd3db0e0c3
commit
0d6715a413
@ -2903,7 +2903,7 @@ static const size_t ComplexityLimit = UINT16_MAX;
|
||||
/// this many solutions because it prune the search space, but the pruning
|
||||
/// isn't always sufficient.
|
||||
size_t LSRInstance::EstimateSearchSpaceComplexity() const {
|
||||
uint32_t Power = 1;
|
||||
size_t Power = 1;
|
||||
for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
|
||||
E = Uses.end(); I != E; ++I) {
|
||||
size_t FSize = I->Formulae.size();
|
||||
|
Loading…
Reference in New Issue
Block a user