Rustup to rustc 1.55.0-nightly (59216858a 2021-07-18)

This commit is contained in:
bjorn3 2021-07-19 15:32:22 +02:00
parent c151bb4ac5
commit 0ebb4839f6
3 changed files with 4 additions and 6 deletions

View file

@ -40,9 +40,9 @@ checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "cc"
version = "1.0.68"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a72c244c1ff497a746a7e1fb3d14bd08420ecda70c8f25c7112f2781652d787"
checksum = "e70cc2f62c6ce1868963827bd677764c62d07c3d9a3e1fb1177ee1a9ab199eb2"
[[package]]
name = "cfg-if"

View file

@ -1,3 +1,3 @@
[toolchain]
channel = "nightly-2021-07-08"
channel = "nightly-2021-07-19"
components = ["rust-src", "rustc-dev", "llvm-tools-preview"]

View file

@ -220,9 +220,7 @@ impl CodegenBackend for CraneliftCodegenBackend {
) -> Result<(), ErrorReported> {
use rustc_codegen_ssa::back::link::link_binary;
link_binary::<crate::archive::ArArchiveBuilder<'_>>(sess, &codegen_results, outputs);
Ok(())
link_binary::<crate::archive::ArArchiveBuilder<'_>>(sess, &codegen_results, outputs)
}
}