about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src/lib.rs
diff options
context:
space:
mode:
authorklensy <klensy@users.noreply.github.com>2023-05-16 18:43:23 +0300
committerklensy <klensy@users.noreply.github.com>2023-05-31 19:40:24 +0300
commita17561ffc90c900cb7d0e96b00c6381244764ef7 (patch)
treed1d7929bc39c5ab1c6a9af6340800cc242807c0b /compiler/rustc_codegen_llvm/src/lib.rs
parente4f7ad8e68206fa54372535b5c04d7ddbaea43be (diff)
downloadrust-a17561ffc90c900cb7d0e96b00c6381244764ef7.tar.gz
rust-a17561ffc90c900cb7d0e96b00c6381244764ef7.zip
use new c literals instead of cstr! macro
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 805843e5863..ff9909c720e 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -11,6 +11,7 @@
 #![feature(let_chains)]
 #![feature(never_type)]
 #![feature(impl_trait_in_assoc_type)]
+#![feature(c_str_literals)]
 #![recursion_limit = "256"]
 #![allow(rustc::potential_query_instability)]
 #![deny(rustc::untranslatable_diagnostic)]