Skip to content

Commit cf552ea

Browse files
committed
Match up conditional for Float80 support
1 parent e1b9d65 commit cf552ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

stdlib/public/core/FloatingPointToString.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,8 @@ fileprivate func _Float128ToASCII(
12871287
// performance overall.
12881288
//
12891289
// ================================================================
1290-
#if ((os(macOS) || targetEnvironment(macCatalyst) || os(Linux)) && arch(x86_64))
1290+
1291+
#if !(os(Windows) || os(Android) || ($Embedded && !os(Linux) && !(os(macOS) || os(iOS) || os(watchOS) || os(tvOS)))) && (arch(i386) || arch(x86_64))
12911292

12921293
@available(SwiftStdlib 6.2, *)
12931294
fileprivate func _backend_256bit(

0 commit comments

Comments
 (0)