Increase the inline threshold

This commit is contained in:
Brendan Hansknecht 2022-10-05 08:11:10 -07:00
parent 4ebe1b2bce
commit ca92b5e8e8
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

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);
}
}