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-12-03 14:02:31 +0300
committerklensy <klensy@users.noreply.github.com>2023-12-03 14:54:09 +0300
commit26e69a88167bd68ad65b22d5ca013f1270b163be (patch)
treed207d9c69505302c4b165920c2df8446a15b1a47 /compiler/rustc_codegen_llvm/src/lib.rs
parent71940e0a8a87ec685b338384ff5b4d98c3d926c1 (diff)
downloadrust-26e69a88167bd68ad65b22d5ca013f1270b163be.tar.gz
rust-26e69a88167bd68ad65b22d5ca013f1270b163be.zip
compiler: replace cstr macro with c str literals in compiler and few other c str replacements
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 915cf31de08..53d4e9f9ce5 100644
--- a/compiler/rustc_codegen_llvm/src/lib.rs
+++ b/compiler/rustc_codegen_llvm/src/lib.rs
@@ -8,6 +8,7 @@
 #![feature(rustdoc_internals)]
 #![doc(rust_logo)]
 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
+#![cfg_attr(bootstrap, feature(c_str_literals))]
 #![feature(exact_size_is_empty)]
 #![feature(extern_types)]
 #![feature(hash_raw_entry)]