Skip to content

Commit 3228d5e

Browse files
committed
Rustup to rustc 1.86.0-nightly (854f22563 2025-01-31)
1 parent 77009e9 commit 3228d5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
[toolchain]
2-
channel = "nightly-2025-01-23"
2+
channel = "nightly-2025-02-01"
33
components = ["rust-src", "rustc-dev", "llvm-tools"]
44
profile = "minimal"

src/driver/jit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ pub(crate) fn run_jit(tcx: TyCtxt<'_>, codegen_mode: CodegenMode, jit_args: Vec<
9090
create_jit_module(tcx, matches!(codegen_mode, CodegenMode::JitLazy));
9191
let mut cached_context = Context::new();
9292

93-
let (_, cgus) = tcx.collect_and_partition_mono_items(());
93+
let cgus = tcx.collect_and_partition_mono_items(()).codegen_units;
9494
let mono_items = cgus
9595
.iter()
9696
.map(|cgu| cgu.items_in_deterministic_order(tcx).into_iter())

0 commit comments

Comments
 (0)