Skip to content

Commit 3fe5b15

Browse files
committed
stdlib: android does not support fp80
Like Windows, Android does not support FP80. Ensure that we do not emit these even on x86 and x86_64.
1 parent 4e85c51 commit 3fe5b15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/public/core/FloatingPointTypes.swift.gyb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -903,7 +903,7 @@ extension ${Self}: _ExpressibleByBuiltinIntegerLiteral, ExpressibleByIntegerLite
903903
}
904904

905905
% if bits != 80:
906-
#if !os(Windows) && (arch(i386) || arch(x86_64))
906+
#if !(os(Windows) || os(Android)) && (arch(i386) || arch(x86_64))
907907
% end
908908

909909
% builtinFloatLiteralBits = 80

0 commit comments

Comments
 (0)