Skip to content

Commit 273616f

Browse files
committed
Remove BuiltinMath funcs for Float80/Android
These were previously removed in SE-0246, so they weren't modified when Float80 was removed elsewhere on Android. Reverting SE-0246 on master triggers an Android break.
1 parent b7acc6d commit 273616f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/BuiltinMath.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def TypedUnaryIntrinsicFunctions():
6262
// Note these have a corresponding LLVM intrinsic
6363
% for T, CT, bits, ufunc in TypedUnaryIntrinsicFunctions():
6464
% if bits == 80:
65-
#if !os(Windows) && (arch(i386) || arch(x86_64))
65+
#if !(os(Windows) || os(Android)) && (arch(i386) || arch(x86_64))
6666
% end
6767
@_transparent
6868
public func _${ufunc}(_ x: ${T}) -> ${T} {

0 commit comments

Comments
 (0)