Skip to content

Commit 898ba07

Browse files
authored
Merge pull request swiftlang#25700 from compnerd/stdlib-unittest-fp80
2 parents 934f34d + 2a710f4 commit 898ba07

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/private/StdlibUnittest/OpaqueIdentityFunctions.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public func getFloat32(_ x: Float32) -> Float32 { return _opaqueIdentity(x) }
7171
@inline(never)
7272
public func getFloat64(_ x: Float64) -> Float64 { return _opaqueIdentity(x) }
7373

74-
#if !os(Windows) && (arch(i386) || arch(x86_64))
74+
#if !(os(Windows) || os(Android)) && (arch(i386) || arch(x86_64))
7575
@inline(never)
7676
public func getFloat80(_ x: Float80) -> Float80 { return _opaqueIdentity(x) }
7777
#endif

0 commit comments

Comments
 (0)