diff options
| author | bors <bors@rust-lang.org> | 2023-10-17 04:41:20 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2023-10-17 04:41:20 +0000 |
| commit | 631a116cd3b326096340691e60bf74e9868289a6 (patch) | |
| tree | 59d1e8cd0ec07b853d164a2baa40cc0c7a01140d /compiler/rustc_codegen_llvm | |
| parent | c07693c1608258f3577eb15057fc0744fa924ae9 (diff) | |
| parent | 2ff2624722a8e0022ba0783d5870456df379ed94 (diff) | |
| download | rust-631a116cd3b326096340691e60bf74e9868289a6.tar.gz rust-631a116cd3b326096340691e60bf74e9868289a6.zip | |
Auto merge of #116822 - notriddle:notriddle/rust-logo, r=fmease
docs: add Rust logo to more compiler crates c6e6ecb1afea9695a42d0f148ce153536b279eb5 added it to some of the compiler's crates, but avoided adding it to all of them to reduce bit-rot. This commit adds to more. r? `@GuillaumeGomez`
Diffstat (limited to 'compiler/rustc_codegen_llvm')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/lib.rs b/compiler/rustc_codegen_llvm/src/lib.rs index 59d1ea05d8a..7a390d35a2b 100644 --- a/compiler/rustc_codegen_llvm/src/lib.rs +++ b/compiler/rustc_codegen_llvm/src/lib.rs @@ -4,6 +4,9 @@ //! //! This API is completely unstable and subject to change. +#![cfg_attr(not(bootstrap), allow(internal_features))] +#![cfg_attr(not(bootstrap), feature(rustdoc_internals))] +#![cfg_attr(not(bootstrap), doc(rust_logo))] #![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")] #![feature(extern_types)] #![feature(hash_raw_entry)] |
