Skip to content

Commit 3ef4a60

Browse files
committed
Shrink is_aligned_and_not_null
1 parent 6dd581b commit 3ef4a60

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

library/core/src/intrinsics.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -2648,7 +2648,10 @@ pub(crate) use assert_unsafe_precondition;
26482648
/// `align_of::<T>()`.
26492649
#[inline]
26502650
pub(crate) fn is_aligned_and_not_null<T>(ptr: *const T) -> bool {
2651-
!ptr.is_null() && ptr.is_aligned()
2651+
let mask = crate::mem::align_of::<T>() - 1;
2652+
let is_aligned = (ptr.addr() & mask) == 0;
2653+
let not_null = ptr.addr() != 0;
2654+
is_aligned && not_null
26522655
}
26532656

26542657
/// Checks whether an allocation of `len` instances of `T` exceeds

0 commit comments

Comments
 (0)