@@ -455,7 +455,6 @@ extension UnsafeRawPointer {
455455
456456 // FIXME(NCG): Add a borrow analogue of `load`, like `withBorrow(fromByteOffset:as:_:)`
457457
458- #if $BitwiseCopyable
459458 /// Returns a new instance of the given type, constructed from the raw memory
460459 /// at the specified offset.
461460 ///
@@ -486,7 +485,6 @@ extension UnsafeRawPointer {
486485 ) -> T {
487486 return Builtin . loadRaw ( ( self + offset) . _rawValue)
488487 }
489- #endif
490488
491489 /// Returns a new instance of the given type, constructed from the raw memory
492490 /// at the specified offset.
@@ -1288,7 +1286,6 @@ extension UnsafeMutableRawPointer {
12881286 // FIXME(NCG): Add a consuming analogue of `load`, like `move(fromByteOffset:as:_:)`
12891287 // FIXME(NCG): Add a borrow analogue of `load`, like `withBorrow(fromByteOffset:as:_:)`
12901288
1291- #if $BitwiseCopyable
12921289 /// Returns a new instance of the given type, constructed from the raw memory
12931290 /// at the specified offset.
12941291 ///
@@ -1319,7 +1316,6 @@ extension UnsafeMutableRawPointer {
13191316 ) -> T {
13201317 return Builtin . loadRaw ( ( self + offset) . _rawValue)
13211318 }
1322- #endif
13231319
13241320 /// Returns a new instance of the given type, constructed from the raw memory
13251321 /// at the specified offset.
@@ -1362,7 +1358,6 @@ extension UnsafeMutableRawPointer {
13621358 }
13631359 }
13641360
1365- #if $BitwiseCopyable
13661361 /// Stores the given value's bytes into raw memory at the specified offset.
13671362 ///
13681363 /// The type `T` to be stored must be a trivial type. The memory
@@ -1409,7 +1404,6 @@ extension UnsafeMutableRawPointer {
14091404 fatalError ( " Unsupported swift compiler! " )
14101405#endif
14111406 }
1412- #endif
14131407
14141408 /// Stores the given value's bytes into raw memory at the specified offset.
14151409 ///
0 commit comments