forked from OSchip/llvm-project
parent
8e72611058
commit
49d638b45a
|
@ -2903,7 +2903,7 @@ static const size_t ComplexityLimit = UINT16_MAX;
|
||||||
/// this many solutions because it prune the search space, but the pruning
|
/// this many solutions because it prune the search space, but the pruning
|
||||||
/// isn't always sufficient.
|
/// isn't always sufficient.
|
||||||
size_t LSRInstance::EstimateSearchSpaceComplexity() const {
|
size_t LSRInstance::EstimateSearchSpaceComplexity() const {
|
||||||
uint32_t Power = 1;
|
size_t Power = 1;
|
||||||
for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
|
for (SmallVectorImpl<LSRUse>::const_iterator I = Uses.begin(),
|
||||||
E = Uses.end(); I != E; ++I) {
|
E = Uses.end(); I != E; ++I) {
|
||||||
size_t FSize = I->Formulae.size();
|
size_t FSize = I->Formulae.size();
|
||||||
|
|
Loading…
Reference in New Issue