Rustup to rustc 1.86.0-nightly (854f22563 2025-01-31)

This commit is contained in:
bjorn3 2025-02-01 16:02:06 +00:00
parent 77009e9924
commit 3228d5ee62
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
[toolchain]
channel = "nightly-2025-01-23"
channel = "nightly-2025-02-01"
components = ["rust-src", "rustc-dev", "llvm-tools"]
profile = "minimal"

View file

@ -90,7 +90,7 @@ pub(crate) fn run_jit(tcx: TyCtxt<'_>, codegen_mode: CodegenMode, jit_args: Vec<
create_jit_module(tcx, matches!(codegen_mode, CodegenMode::JitLazy));
let mut cached_context = Context::new();
let (_, cgus) = tcx.collect_and_partition_mono_items(());
let cgus = tcx.collect_and_partition_mono_items(()).codegen_units;
let mono_items = cgus
.iter()
.map(|cgu| cgu.items_in_deterministic_order(tcx).into_iter())