about summary refs log tree commit diff
path: root/compiler/rustc_codegen_cranelift/src
diff options
context:
space:
mode:
authorPietro Albini <pietro@pietroalbini.org>2023-12-22 11:14:11 +0100
committerPietro Albini <pietro@pietroalbini.org>2023-12-22 11:14:11 +0100
commitf9f5840eb4e97fac09348eee0902c1691f042798 (patch)
tree5589489ccd92d321200cf1aa26b195f17b9c6e96 /compiler/rustc_codegen_cranelift/src
parentbcdaa0d19460329a28db9922bb73ce123ffdcf27 (diff)
downloadrust-f9f5840eb4e97fac09348eee0902c1691f042798.tar.gz
rust-f9f5840eb4e97fac09348eee0902c1691f042798.zip
update cfg(bootstrap)s
Diffstat (limited to 'compiler/rustc_codegen_cranelift/src')
-rw-r--r--compiler/rustc_codegen_cranelift/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/lib.rs b/compiler/rustc_codegen_cranelift/src/lib.rs
index 148193b5a97..d0ce209be44 100644
--- a/compiler/rustc_codegen_cranelift/src/lib.rs
+++ b/compiler/rustc_codegen_cranelift/src/lib.rs
@@ -1,6 +1,6 @@
-#![cfg_attr(all(doc, not(bootstrap)), allow(internal_features))]
-#![cfg_attr(all(doc, not(bootstrap)), feature(rustdoc_internals))]
-#![cfg_attr(all(doc, not(bootstrap)), doc(rust_logo))]
+#![cfg_attr(doc, allow(internal_features))]
+#![cfg_attr(doc, feature(rustdoc_internals))]
+#![cfg_attr(doc, doc(rust_logo))]
 #![feature(rustc_private)]
 // Note: please avoid adding other feature gates where possible
 #![warn(rust_2018_idioms)]