|
130 | 130 | #if !((os(macOS) || targetEnvironment(macCatalyst)) && arch(x86_64))
|
131 | 131 |
|
132 | 132 | // Support Legacy ABI on top of new implementation
|
133 |
| -@available(SwiftStdlib 6.2, *) |
| 133 | +@available(SwiftStdlib 5.3, *) |
134 | 134 | @_silgen_name("swift_float16ToString")
|
135 | 135 | public func _float16ToStringImpl(
|
136 | 136 | _ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
|
@@ -420,7 +420,8 @@ internal func _Float16ToASCII(
|
420 | 420 |
|
421 | 421 | // Support Legacy ABI on top of new implementation
|
422 | 422 | @_silgen_name("swift_float32ToString")
|
423 |
| -public func _float32ToStringImpl( |
| 423 | +@usableFromInline |
| 424 | +func _float32ToStringImpl( |
424 | 425 | _ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
|
425 | 426 | _ bufferLength: UInt,
|
426 | 427 | _ value: Float32,
|
@@ -672,7 +673,8 @@ internal func _Float32ToASCII(
|
672 | 673 |
|
673 | 674 | // Support Legacy ABI on top of new implementation
|
674 | 675 | @_silgen_name("swift_float64ToString")
|
675 |
| -public func _float64ToStringImpl( |
| 676 | +@usableFromInline |
| 677 | +func _float64ToStringImpl( |
676 | 678 | _ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
|
677 | 679 | _ bufferLength: UInt,
|
678 | 680 | _ value: Float64,
|
@@ -1179,7 +1181,8 @@ internal func _Float64ToASCII(
|
1179 | 1181 |
|
1180 | 1182 | // Support Legacy ABI on top of new implementation
|
1181 | 1183 | @_silgen_name("swift_float80ToString")
|
1182 |
| -internal func _float80ToStringImpl( |
| 1184 | +@usableFromInline |
| 1185 | +func _float80ToStringImpl( |
1183 | 1186 | _ textBuffer: UnsafeMutablePointer<UTF8.CodeUnit>,
|
1184 | 1187 | _ bufferLength: UInt,
|
1185 | 1188 | _ value: Float80,
|
|
0 commit comments