about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2022-07-08 10:03:27 +0000
committerbors <bors@rust-lang.org>2022-07-08 10:03:27 +0000
commit1dcff2d5077244f49687ea25070958f23bd9edc6 (patch)
tree3f03f613e810dc16f54fc1e807f1f1dbfd98d215 /compiler/rustc_codegen_llvm/src/lib.rs
parent0f97e02bdc7a53176aa96a53ff8b533947d7649c (diff)
parentf688f4d1e4753ca0a83a1413a7b98fb8727c04a2 (diff)
downloadrust-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.rs1
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)]