about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/lib.rs
diff options
context:
space:
mode:
authorbjorn3 <17426603+bjorn3@users.noreply.github.com>2022-06-28 17:34:24 +0000
committerbjorn3 <17426603+bjorn3@users.noreply.github.com>2022-06-28 18:38:36 +0000
commitf6484fa9b59585cf0609aa6f047015270f6e1d19 (patch)
tree80aa1a90f9ab2ca00f528ba58b400d9daa416663 /compiler/rustc_codegen_llvm/src/lib.rs
parent94e93749ab00539a11e90426ea87382c433530a8 (diff)
downloadrust-f6484fa9b59585cf0609aa6f047015270f6e1d19.tar.gz
rust-f6484fa9b59585cf0609aa6f047015270f6e1d19.zip
Avoid unnecessary string interning for const_str
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)]