about summary refs log tree commit diff
diff options
context:
space:
mode:
authorOli Scherer <github333195615777966@oli-obk.de>2025-01-27 08:11:02 +0000
committerOli Scherer <github333195615777966@oli-obk.de>2025-01-27 09:38:12 +0000
commit0ef7ea2c2fff987cae8f5c4a56bf1e59ddb2e932 (patch)
treef3ad5ef0c79096e2e2c8b2274a812c54c5c0ef5c
parent996d570939f0fbe778ca2c0ead912a1255370944 (diff)
downloadrust-0ef7ea2c2fff987cae8f5c4a56bf1e59ddb2e932.tar.gz
rust-0ef7ea2c2fff987cae8f5c4a56bf1e59ddb2e932.zip
Change `collect_and_partition_mono_items` tuple return type to a struct
-rw-r--r--src/driver/aot.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/driver/aot.rs b/src/driver/aot.rs
index 7d5592daac1..27adf6318e2 100644
--- a/src/driver/aot.rs
+++ b/src/driver/aot.rs
@@ -676,7 +676,7 @@ pub(crate) fn run_aot(
     .to_owned();
 
     let cgus = if tcx.sess.opts.output_types.should_codegen() {
-        tcx.collect_and_partition_mono_items(()).1
+        tcx.collect_and_partition_mono_items(()).codegen_units
     } else {
         // If only `--emit metadata` is used, we shouldn't perform any codegen.
         // Also `tcx.collect_and_partition_mono_items` may panic in that case.