Skip to content

Commit ff05ffb

Browse files
committed
Platform: remove FP80 operations on android
These were accidentally re-enabled on Android when SE-0246 was reverted. This causes the android x64 builds to break.
1 parent b66a370 commit ff05ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/Platform/tgmath.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public func ${ufunc}(_ x: ${T}) -> ${T} {
258258
% for ufunc in UnaryIntrinsicFunctions:
259259
% for T, CT, f in OverlayFloatTypes():
260260
% if T == 'Float80':
261-
#if (arch(i386) || arch(x86_64)) && !os(Windows)
261+
#if (arch(i386) || arch(x86_64)) && !(os(Windows) || os(Android))
262262
% end
263263
@_transparent
264264
public func ${ufunc}(_ x: ${T}) -> ${T} {

0 commit comments

Comments
 (0)