Skip to content

Commit 6544ba2

Browse files
authored
Rollup merge of #121311 - Nilstrieb:is-it-overlapping, r=saethlin
Make `is_nonoverlapping` `#[inline]` It showed up with 3% execution time in a compiler profile. backlink to #120848 r? `@saethlin`
2 parents e6060eb + 0b59748 commit 6544ba2

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/core/src/intrinsics.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2733,6 +2733,7 @@ pub(crate) fn is_valid_allocation_size(size: usize, len: usize) -> bool {
27332733

27342734
/// Checks whether the regions of memory starting at `src` and `dst` of size
27352735
/// `count * size` do *not* overlap.
2736+
#[inline]
27362737
pub(crate) fn is_nonoverlapping(src: *const (), dst: *const (), size: usize, count: usize) -> bool {
27372738
let src_usize = src.addr();
27382739
let dst_usize = dst.addr();

0 commit comments

Comments
 (0)