diff --git a/tools/opt/opt.cpp b/tools/opt/opt.cpp index 50f327f8940..b4c96820b5a 100644 --- a/tools/opt/opt.cpp +++ b/tools/opt/opt.cpp @@ -355,9 +355,9 @@ void AddOptimizationPasses(PassManagerBase &MPM, PassManagerBase &FPM, if (DisableInline) { // No inlining pass } else if (OptLevel) { - unsigned Threshold = 200; + unsigned Threshold = 225; if (OptLevel > 2) - Threshold = 250; + Threshold = 275; InliningPass = createFunctionInliningPass(Threshold); } else { InliningPass = createAlwaysInlinerPass();