diff options
| author | Ralf Jung <post@ralfj.de> | 2025-09-08 15:56:48 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2025-09-10 08:40:12 +0200 |
| commit | 64ea775d27599a33b070dd3aa4353e1e7faee0b4 (patch) | |
| tree | 191ebabe50cfb67c95956e375f9feb81eed6376d /compiler/rustc_data_structures/src/lib.rs | |
| parent | be8de5d6a0fc5cb2924e174a809a0aff303f281a (diff) | |
| download | rust-64ea775d27599a33b070dd3aa4353e1e7faee0b4.tar.gz rust-64ea775d27599a33b070dd3aa4353e1e7faee0b4.zip | |
interpret: copy_provenance: avoid large intermediate buffer for large repeat counts
Diffstat (limited to 'compiler/rustc_data_structures/src/lib.rs')
| -rw-r--r-- | compiler/rustc_data_structures/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_data_structures/src/lib.rs b/compiler/rustc_data_structures/src/lib.rs index 17da3ea83c8..e4e86bcc41a 100644 --- a/compiler/rustc_data_structures/src/lib.rs +++ b/compiler/rustc_data_structures/src/lib.rs @@ -34,6 +34,7 @@ #![feature(sized_hierarchy)] #![feature(test)] #![feature(thread_id_value)] +#![feature(trusted_len)] #![feature(type_alias_impl_trait)] #![feature(unwrap_infallible)] // tidy-alphabetical-end |
