@@ -106,7 +106,7 @@ public func run_FloatingPointPrinting_Double_description_small(_ N: Int) {
106106
107107@inline ( never)
108108public 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)
110110// On Darwin, long double is Float80 on x86, and Double otherwise.
111111// On Linux, Float80 is at aleast available on x86.
112112#if arch(x86_64) || arch(i386)
@@ -152,7 +152,7 @@ public func run_FloatingPointPrinting_Double_description_uniform(_ N: Int) {
152152
153153@inline ( never)
154154public 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)
156156// On Darwin, long double is Float80 on x86, and Double otherwise.
157157// On Linux, Float80 is at aleast available on x86.
158158#if arch(x86_64) || arch(i386)
@@ -202,7 +202,7 @@ public func run_FloatingPointPrinting_Double_interpolated(_ N: Int) {
202202
203203@inline ( never)
204204public 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)
206206// On Darwin, long double is Float80 on x86, and Double otherwise.
207207// On Linux, Float80 is at aleast available on x86.
208208#if arch(x86_64) || arch(i386)
0 commit comments