@@ -106,7 +106,7 @@ public func run_FloatingPointPrinting_Double_description_small(_ N: Int) {
106
106
107
107
@inline ( never)
108
108
public func run_FloatingPointPrinting_Float80_description_small( _ N: Int ) {
109
- #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS ) || os(Linux)
109
+ #if canImport(Darwin ) || os(Linux)
110
110
// On Darwin, long double is Float80 on x86, and Double otherwise.
111
111
// On Linux, Float80 is at aleast available on x86.
112
112
#if arch(x86_64) || arch(i386)
@@ -152,7 +152,7 @@ public func run_FloatingPointPrinting_Double_description_uniform(_ N: Int) {
152
152
153
153
@inline ( never)
154
154
public func run_FloatingPointPrinting_Float80_description_uniform( _ N: Int ) {
155
- #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS ) || os(Linux)
155
+ #if canImport(Darwin ) || os(Linux)
156
156
// On Darwin, long double is Float80 on x86, and Double otherwise.
157
157
// On Linux, Float80 is at aleast available on x86.
158
158
#if arch(x86_64) || arch(i386)
@@ -202,7 +202,7 @@ public func run_FloatingPointPrinting_Double_interpolated(_ N: Int) {
202
202
203
203
@inline ( never)
204
204
public func run_FloatingPointPrinting_Float80_interpolated( _ N: Int ) {
205
- #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS ) || os(Linux)
205
+ #if canImport(Darwin ) || os(Linux)
206
206
// On Darwin, long double is Float80 on x86, and Double otherwise.
207
207
// On Linux, Float80 is at aleast available on x86.
208
208
#if arch(x86_64) || arch(i386)
0 commit comments