Skip to content

Commit ce0a47a

Browse files
committed
Auto merge of rust-lang#81238 - RalfJung:copy-intrinsics, r=m-ou-se
directly expose copy and copy_nonoverlapping intrinsics This effectively un-does rust-lang#57997. That should help with `ptr::read` codegen in debug builds (and any other of these low-level functions that bottoms out at `copy`/`copy_nonoverlapping`), where the wrapper function will not get inlined. See the discussion in rust-lang#80290 and rust-lang#81163. Cc `@bjorn3` `@therealprof`
2 parents 34b373d + dd91987 commit ce0a47a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

clippy_lints/src/utils/paths.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ pub const CLONE_TRAIT: [&str; 3] = ["core", "clone", "Clone"];
2020
pub const CLONE_TRAIT_METHOD: [&str; 4] = ["core", "clone", "Clone", "clone"];
2121
pub const CMP_MAX: [&str; 3] = ["core", "cmp", "max"];
2222
pub const CMP_MIN: [&str; 3] = ["core", "cmp", "min"];
23-
pub const COPY: [&str; 3] = ["core", "intrinsics", "copy_nonoverlapping"];
24-
pub const COPY_NONOVERLAPPING: [&str; 3] = ["core", "intrinsics", "copy"];
23+
pub const COPY: [&str; 4] = ["core", "intrinsics", "", "copy_nonoverlapping"];
24+
pub const COPY_NONOVERLAPPING: [&str; 4] = ["core", "intrinsics", "", "copy"];
2525
pub const COW: [&str; 3] = ["alloc", "borrow", "Cow"];
2626
pub const CSTRING_AS_C_STR: [&str; 5] = ["std", "ffi", "c_str", "CString", "as_c_str"];
2727
pub const DEFAULT_TRAIT: [&str; 3] = ["core", "default", "Default"];

0 commit comments

Comments
 (0)