Imported Upstream version 6.0.0.172

Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2019-04-12 14:10:50 +00:00
parent 8016999e4d
commit 64ac736ec5
32155 changed files with 3981439 additions and 75368 deletions

View File

@ -0,0 +1,22 @@
--- !Passed
Pass: sil-inliner
Name: sil.Inlined
DebugLoc:
File: s.swift
Line: 12
Column: 16
Function: main
Args:
- Callee: '"s.• infix(_:_:)"'
DebugLoc:
File: s.swift
Line: 3
Column: 6
- String: ' inlined into '
- Caller: '"main"'
- String: ' (cost = '
- Cost: '2'
- String: ', benefit = '
- Benefit: '40'
- String: ')'
...

View File

@ -0,0 +1,12 @@
infix operator : AdditionPrecedence
func (a: Int, b: Int) -> Int {
return a * b
}
@inline(never)
func g(a: Int) -> Int{
return a + 1
}
let i = g(a: 1 2)