Skip to content

Commit 3b39a03

Browse files
committed
Fix test case failure on Linux s390x, which does not have the CoreGraphics module.
1 parent 59e80c5 commit 3b39a03

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) || arch(powerpc64) || arch(powerpc64le)
10+
#elseif arch(x86_64) || arch(arm64) || arch(powerpc64) || arch(powerpc64le) || arch(s390x)
1111
typealias CGFloat = Double
1212
#endif
1313
#else

0 commit comments

Comments
 (0)