Skip to content

Commit 02f09ca

Browse files
authored
Merge pull request #1026 from uraimo/no-more-powerpc
2 parents 766645d + 44690ac commit 02f09ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Foundation/CGFloat.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
@_fixed_layout
1111
public struct CGFloat {
12-
#if arch(i386) || arch(arm) || arch(powerpc)
12+
#if arch(i386) || arch(arm)
1313
/// The native type used to store the CGFloat, which is Float on
1414
/// 32-bit architectures and Double on 64-bit architectures.
1515
public typealias NativeType = Float
@@ -183,7 +183,7 @@ extension CGFloat : BinaryFloatingPoint {
183183

184184
@_transparent
185185
public init(bitPattern: UInt) {
186-
#if arch(i386) || arch(arm) || arch(powerpc)
186+
#if arch(i386) || arch(arm)
187187
native = NativeType(bitPattern: UInt32(bitPattern))
188188
#elseif arch(x86_64) || arch(arm64) || arch(s390x) || arch(powerpc64) || arch(powerpc64le)
189189
native = NativeType(bitPattern: UInt64(bitPattern))

0 commit comments

Comments
 (0)