We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9bda1e5 commit 4498b28Copy full SHA for 4498b28
stdlib/public/Platform/tgmath.swift.gyb
@@ -203,11 +203,16 @@ public func ${ufunc}(_ x: ${T}) -> ${T} {
203
// UnaryFunctions, we define overlays only for OverlayFloatTypes.
204
% for ufunc in UnaryIntrinsicFunctions:
205
% for T, CT, f in OverlayFloatTypes():
206
+% if T == 'Float80':
207
+#if arch(i386) || arch(x86_64)
208
+% end
209
@_transparent
210
public func ${ufunc}(_ x: ${T}) -> ${T} {
211
return ${T}(${ufunc}${f}(${CT}(x)))
212
}
-
213
214
+#endif
215
216
% end
217
218
#endif
0 commit comments