diff options
| author | Josh Stone <jistone@redhat.com> | 2025-02-27 09:09:52 -0800 |
|---|---|---|
| committer | Josh Stone <jistone@redhat.com> | 2025-02-27 09:09:52 -0800 |
| commit | 396c2a8659b0b99254a25b7c0431a99d8223fb5c (patch) | |
| tree | 00c8f762a52c7644515de5b412ed9b61ae70dd07 /compiler/rustc_codegen_gcc/src/lib.rs | |
| parent | 96cfc75584359ae7ad11cc45968059f29e7b44b7 (diff) | |
| download | rust-396c2a8659b0b99254a25b7c0431a99d8223fb5c.tar.gz rust-396c2a8659b0b99254a25b7c0431a99d8223fb5c.zip | |
Stop using `hash_raw_entry` in `CodegenCx::const_str`
That unstable feature completed fcp-close, so the compiler needs to be migrated away to allow its removal. In this case, `cg_llvm` and `cg_gcc` were using raw entries to optimize their `const_str_cache` lookup and insertion. We can change that to separate `get` and (on miss) `insert` calls, so we still have the fast path avoiding string allocation when the cache hits.
Diffstat (limited to 'compiler/rustc_codegen_gcc/src/lib.rs')
| -rw-r--r-- | compiler/rustc_codegen_gcc/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_gcc/src/lib.rs b/compiler/rustc_codegen_gcc/src/lib.rs index 6455bcec685..74138687679 100644 --- a/compiler/rustc_codegen_gcc/src/lib.rs +++ b/compiler/rustc_codegen_gcc/src/lib.rs @@ -16,7 +16,7 @@ #![allow(internal_features)] #![doc(rust_logo)] #![feature(rustdoc_internals)] -#![feature(rustc_private, decl_macro, never_type, trusted_len, hash_raw_entry, let_chains)] +#![feature(rustc_private, decl_macro, never_type, trusted_len, let_chains)] #![allow(broken_intra_doc_links)] #![recursion_limit = "256"] #![warn(rust_2018_idioms)] |
