You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: compiler/rustc_codegen_cranelift/src/driver/aot.rs
+1-29Lines changed: 1 addition & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ use std::sync::Arc;
7
7
use std::thread::JoinHandle;
8
8
9
9
use rustc_codegen_ssa::back::metadata::create_compressed_metadata_file;
10
+
use rustc_codegen_ssa::base::determine_cgu_reuse;
10
11
use rustc_codegen_ssa::{CodegenResults,CompiledModule,CrateInfo,ModuleKind};
11
12
use rustc_data_structures::profiling::SelfProfilerRef;
12
13
use rustc_data_structures::stable_hasher::{HashStable,StableHasher};
@@ -490,32 +491,3 @@ pub(crate) fn run_aot(
490
491
concurrency_limiter,
491
492
})
492
493
}
493
-
494
-
// Adapted from https://github.com/rust-lang/rust/blob/303d8aff6092709edd4dbd35b1c88e9aa40bf6d8/src/librustc_codegen_ssa/base.rs#L922-L953
0 commit comments