diff options
| author | bors <bors@rust-lang.org> | 2022-07-08 10:03:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-07-08 10:03:27 +0000 |
| commit | 1dcff2d5077244f49687ea25070958f23bd9edc6 (patch) | |
| tree | 3f03f613e810dc16f54fc1e807f1f1dbfd98d215 /compiler/rustc_codegen_llvm/src/lib.rs | |
| parent | 0f97e02bdc7a53176aa96a53ff8b533947d7649c (diff) | |
| parent | f688f4d1e4753ca0a83a1413a7b98fb8727c04a2 (diff) | |
| download | rust-1dcff2d5077244f49687ea25070958f23bd9edc6.tar.gz rust-1dcff2d5077244f49687ea25070958f23bd9edc6.zip | |
Auto merge of #98638 - bjorn3:less_string_interning, r=tmiasko
Use less string interning This removes string interning in a couple of places where doing so won't result in perf improvements. I also switched one place to use pre-interned symbols.
Diffstat (limited to 'compiler/rustc_codegen_llvm/src/lib.rs')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs index 6713a756735..a7dd8e16d28 100644 --- a/compiler/rustc_codegen_llvm/src/lib.rs +++ b/compiler/rustc_codegen_llvm/src/lib.rs @@ -5,6 +5,7 @@ //! This API is completely unstable and subject to change. #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] +#![feature(hash_raw_entry)] #![feature(let_chains)] #![feature(let_else)] #![feature(extern_types)] |
