File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
lib/SILOptimizer/Transforms Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,8 @@ llvm::cl::opt<bool> EnableSILInliningOfGenerics(
40
40
llvm::cl::desc(" Enable inlining of generics" ));
41
41
42
42
llvm::cl::opt<bool >
43
- EnableSILAgressiveInlining (" sil-agressive -inline" , llvm::cl::init(false ),
44
- llvm::cl::desc(" Enable agressive inlining" ));
43
+ EnableSILAggressiveInlining (" sil-aggressive -inline" , llvm::cl::init(false ),
44
+ llvm::cl::desc(" Enable aggressive inlining" ));
45
45
46
46
// ===----------------------------------------------------------------------===//
47
47
// Performance Inliner
@@ -327,7 +327,7 @@ bool SILPerformanceInliner::isProfitableToInline(
327
327
// if AllAccessesBeneficialToInline is true
328
328
int ExclusivityBenefitWeight = 0 ;
329
329
int ExclusivityBenefitBase = ExclusivityBenefit;
330
- if (EnableSILAgressiveInlining ) {
330
+ if (EnableSILAggressiveInlining ) {
331
331
ExclusivityBenefitBase += 500 ;
332
332
}
333
333
You can’t perform that action at this time.
0 commit comments