diff options
| author | bors <bors@rust-lang.org> | 2024-03-20 09:37:39 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-20 09:37:39 +0000 |
| commit | 0f706af330022b46efb5bcc8da7ad7276dfdeb69 (patch) | |
| tree | c2dbee18d83faf4b78a8e577924dc5a7958aa122 /compiler/rustc_codegen_llvm/src | |
| parent | b7dcabe55e3b915ba9488dc374f752404c2c8945 (diff) | |
| parent | 53a753e31f87280abaf342f2e235366901716ea5 (diff) | |
| download | rust-0f706af330022b46efb5bcc8da7ad7276dfdeb69.tar.gz rust-0f706af330022b46efb5bcc8da7ad7276dfdeb69.zip | |
Auto merge of #122763 - matthiaskrgr:rollup-o8a2mye, r=matthiaskrgr
Rollup of 6 pull requests Successful merges: - #121543 (various clippy fixes) - #122540 (Do not use `?`-induced skewing of type inference in the compiler) - #122730 (Expose `ucred::peer_cred` on QNX targets to enable dist builds) - #122732 (Remove redundant coroutine captures note) - #122739 (Add "put" as a confusable for insert on hash map/set) - #122748 (Reduce `pub` usage in `rustc_session`.) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
| -rw-r--r-- | compiler/rustc_codegen_llvm/src/context.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/rustc_codegen_llvm/src/context.rs b/compiler/rustc_codegen_llvm/src/context.rs index c3f17563b0a..649ff9df2cc 100644 --- a/compiler/rustc_codegen_llvm/src/context.rs +++ b/compiler/rustc_codegen_llvm/src/context.rs @@ -315,6 +315,7 @@ pub unsafe fn create_module<'ll>( // // On the wasm targets it will get hooked up to the "producer" sections // `processed-by` information. + #[allow(clippy::option_env_unwrap)] let rustc_producer = format!("rustc version {}", option_env!("CFG_VERSION").expect("CFG_VERSION")); let name_metadata = llvm::LLVMMDStringInContext( |
