diff options
| author | bors <bors@rust-lang.org> | 2022-12-09 03:05:27 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2022-12-09 03:05:27 +0000 |
| commit | 7701a7e7d4eed74a106f39fa64899dffd1e1025f (patch) | |
| tree | 6921886cc9b73c908488dbfdf2322e92e0ced131 /compiler/rustc_codegen_ssa/src | |
| parent | b359ccf1b0b7b2d2c1c4932344b806e68bd053a9 (diff) | |
| parent | 660795eee5852a9ea66e7554cb517f14b99fb2f0 (diff) | |
| download | rust-7701a7e7d4eed74a106f39fa64899dffd1e1025f.tar.gz rust-7701a7e7d4eed74a106f39fa64899dffd1e1025f.zip | |
Auto merge of #105456 - matthiaskrgr:rollup-yennygf, r=matthiaskrgr
Rollup of 10 pull requests Successful merges: - #104922 (Detect long types in E0308 and write them to disk) - #105120 (kmc-solid: `std::sys` code maintenance) - #105255 (Make nested RPIT inherit the parent opaque's generics.) - #105317 (make retagging work even with 'unstable' places) - #105405 (Stop passing -export-dynamic to wasm-ld.) - #105408 (Add help for `#![feature(impl_trait_in_fn_trait_return)]`) - #105423 (Use `Symbol` for the crate name instead of `String`/`str`) - #105433 (CI: add missing line continuation marker) - #105434 (Fix warning when libcore is compiled with no_fp_fmt_parse) - #105441 (Remove `UnsafetyState`) Failed merges: r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'compiler/rustc_codegen_ssa/src')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/link.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/link.rs b/compiler/rustc_codegen_ssa/src/back/link.rs index 540f15c89e9..882430694e1 100644 --- a/compiler/rustc_codegen_ssa/src/back/link.rs +++ b/compiler/rustc_codegen_ssa/src/back/link.rs @@ -102,7 +102,7 @@ pub fn link_binary<'a>( sess, crate_type, outputs, - codegen_results.crate_info.local_crate_name.as_str(), + codegen_results.crate_info.local_crate_name, ); match crate_type { CrateType::Rlib => { |
