Skip to content

Commit b66a370

Browse files
authored
Merge pull request #26824 from stephentyrone/builtin-math-float80-android
Remove BuiltinMath funcs for Float80/Android
2 parents dda0167 + 273616f commit b66a370

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)