@@ -779,7 +779,6 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
779
779
/// - count: The number of consecutive elements to update.
780
780
/// `count` must not be negative.
781
781
@inlinable
782
- @_alwaysEmitIntoClient
783
782
@_silgen_name ( " $sSp6assign9repeating5countyx_SitF " )
784
783
public func update( repeating repeatedValue: Pointee , count: Int ) {
785
784
_debugPrecondition ( count >= 0 , " UnsafeMutablePointer.assign(repeating:count:) with negative count " )
@@ -791,7 +790,7 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
791
790
@inlinable
792
791
@_alwaysEmitIntoClient
793
792
@available ( * , deprecated, renamed: " update(repeating:count:) " )
794
- @_silgen_name ( " _deprecated_assign_repeating_count " )
793
+ @_silgen_name ( " _swift_se0370_UnsafeMutablePointer_assign_repeating_count " )
795
794
public func assign( repeating repeatedValue: Pointee , count: Int ) {
796
795
update ( repeating: repeatedValue, count: count)
797
796
}
@@ -813,7 +812,6 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
813
812
/// - count: The number of instances to copy from the memory referenced by
814
813
/// `source` to this pointer's memory. `count` must not be negative.
815
814
@inlinable
816
- @_alwaysEmitIntoClient
817
815
@_silgen_name ( " $sSp6assign4from5countySPyxG_SitF " )
818
816
public func update( from source: UnsafePointer < Pointee > , count: Int ) {
819
817
_debugPrecondition (
@@ -843,7 +841,7 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
843
841
@inlinable
844
842
@_alwaysEmitIntoClient
845
843
@available ( * , deprecated, renamed: " update(from:count:) " )
846
- @_silgen_name ( " _deprecated_assign_from_count " )
844
+ @_silgen_name ( " _swift_se0370_UnsafeMutablePointer_assign_from_count " )
847
845
public func assign( from source: UnsafePointer < Pointee > , count: Int ) {
848
846
update ( from: source, count: count)
849
847
}
@@ -943,7 +941,6 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
943
941
/// - count: The number of instances to move from `source` to this
944
942
/// pointer's memory. `count` must not be negative.
945
943
@inlinable
946
- @_alwaysEmitIntoClient
947
944
@_silgen_name ( " $sSp10moveAssign4from5countySpyxG_SitF " )
948
945
public func moveUpdate(
949
946
@_nonEphemeral from source: UnsafeMutablePointer , count: Int
@@ -964,7 +961,7 @@ public struct UnsafeMutablePointer<Pointee>: _Pointer {
964
961
@inlinable
965
962
@_alwaysEmitIntoClient
966
963
@available ( * , deprecated, renamed: " moveUpdate(from:count:) " )
967
- @_silgen_name ( " _deprecated_moveAssign_from_count " )
964
+ @_silgen_name ( " _swift_se0370_UnsafeMutablePointer_moveAssign_from_count " )
968
965
public func moveAssign(
969
966
@_nonEphemeral from source: UnsafeMutablePointer , count: Int
970
967
) {
0 commit comments