@@ -953,7 +953,7 @@ pub const unsafe fn slice_get_unchecked<
953953#[ rustc_intrinsic]
954954pub fn ptr_mask < T > ( ptr : * const T , mask : usize ) -> * const T ;
955955
956- /// Equivalent to the appropriate `llvm.memcpy.p0i8.0i8 .*` intrinsic, with
956+ /// Equivalent to the appropriate `llvm.memcpy.p0.p0 .*` intrinsic, with
957957/// a size of `count` * `size_of::<T>()` and an alignment of `align_of::<T>()`.
958958///
959959/// This intrinsic does not have a stable counterpart.
@@ -967,7 +967,7 @@ pub fn ptr_mask<T>(ptr: *const T, mask: usize) -> *const T;
967967#[ rustc_intrinsic]
968968#[ rustc_nounwind]
969969pub unsafe fn volatile_copy_nonoverlapping_memory < T > ( dst : * mut T , src : * const T , count : usize ) ;
970- /// Equivalent to the appropriate `llvm.memmove.p0i8.0i8 .*` intrinsic, with
970+ /// Equivalent to the appropriate `llvm.memmove.p0.p0 .*` intrinsic, with
971971/// a size of `count * size_of::<T>()` and an alignment of `align_of::<T>()`.
972972///
973973/// The volatile parameter is set to `true`, so it will not be optimized out
@@ -977,7 +977,7 @@ pub unsafe fn volatile_copy_nonoverlapping_memory<T>(dst: *mut T, src: *const T,
977977#[ rustc_intrinsic]
978978#[ rustc_nounwind]
979979pub unsafe fn volatile_copy_memory < T > ( dst : * mut T , src : * const T , count : usize ) ;
980- /// Equivalent to the appropriate `llvm.memset.p0i8 .*` intrinsic, with a
980+ /// Equivalent to the appropriate `llvm.memset.p0 .*` intrinsic, with a
981981/// size of `count * size_of::<T>()` and an alignment of `align_of::<T>()`.
982982///
983983/// This intrinsic does not have a stable counterpart.
0 commit comments