Skip to content

Commit 5ef487c

Browse files
committed
libswift: clean up SIL/Function.swift formatting
1 parent 56ecfa0 commit 5ef487c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

SwiftCompilerSources/Sources/SIL/Function.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,15 +36,15 @@ final public class Function : CustomStringConvertible {
3636
public var arguments: LazyMapSequence<ArgumentArray, FunctionArgument> {
3737
entryBlock.arguments.lazy.map { $0 as! FunctionArgument }
3838
}
39-
39+
4040
public var numIndirectResultArguments: Int {
4141
SILFunction_numIndirectResultArguments(bridged)
4242
}
43-
43+
4444
public var hasSelfArgument: Bool {
4545
SILFunction_getSelfArgumentIndex(bridged) >= 0
4646
}
47-
47+
4848
public var selfArgumentIndex: Int {
4949
let selfIdx = SILFunction_getSelfArgumentIndex(bridged)
5050
assert(selfIdx >= 0)

0 commit comments

Comments
 (0)