File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
trunk/lib/SILOptimizer/Transforms Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: 046c8f3df669af823b082345b9243ccd875fbe5a
2
+ refs/heads/master: 4b94347aaebf4310a21fb08cc1a6e4f5e9f7a05a
3
3
refs/heads/master-next: 203b3026584ecad859eb328b2e12490099409cd5
4
4
refs/tags/osx-passed: b6b74147ef8a386f532cf9357a1bde006e552c54
5
5
refs/tags/swift-2.2-SNAPSHOT-2015-12-01-a: 6bb18e013c2284f2b45f5f84f2df2887dc0f7dea
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