Skip to content

Commit 2a710f4

Browse files
committed
StdlibUnittest: disable FP80 path on android
android x64 does not support FP80
1 parent 934f34d commit 2a710f4

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)