Skip to content

Commit 095fe9b

Browse files
committed
libswift: clean up SIL/Function.swift formatting
1 parent a954756 commit 095fe9b

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
@@ -33,15 +33,15 @@ final public class Function : CustomStringConvertible, HasName {
3333
public var arguments: LazyMapSequence<ArgumentArray, FunctionArgument> {
3434
entryBlock.arguments.lazy.map { $0 as! FunctionArgument }
3535
}
36-
36+
3737
public var numIndirectResultArguments: Int {
3838
SILFunction_numIndirectResultArguments(bridged)
3939
}
40-
40+
4141
public var hasSelfArgument: Bool {
4242
SILFunction_getSelfArgumentIndex(bridged) >= 0
4343
}
44-
44+
4545
public var selfArgumentIndex: Int {
4646
let selfIdx = SILFunction_getSelfArgumentIndex(bridged)
4747
assert(selfIdx >= 0)

0 commit comments

Comments
 (0)