Merge pull request #4217 from roc-lang/hashing-perf

Misc hashing perf
This commit is contained in:
Ayaz 2022-10-05 20:00:46 -05:00 committed by GitHub
commit a5a984ca45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 10 deletions

View file

@ -714,7 +714,7 @@ pub fn construct_optimization_passes<'a>(
OptLevel::Optimize => {
pmb.set_optimization_level(OptimizationLevel::Aggressive);
// this threshold seems to do what we want
pmb.set_inliner_with_threshold(275);
pmb.set_inliner_with_threshold(750);
}
}