Skip to content

Commit 421d099

Browse files
committed
test: Fix 1_stdlib/tgmath.swift to work on powerpc64{le}
1 parent 9205349 commit 421d099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/1_stdlib/tgmath.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// where they doesn't have CoreGraphics module.
88
#if arch(i386) || arch(arm)
99
typealias CGFloat = Float
10-
#elseif arch(x86_64) || arch(arm64)
10+
#elseif arch(x86_64) || arch(arm64) || arch(powerpc64) || arch(powerpc64le)
1111
typealias CGFloat = Double
1212
#endif
1313
#else

0 commit comments

Comments
 (0)