We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b21cbfd commit 25e45baCopy full SHA for 25e45ba
src/test/run-make-fulldeps/hotplug_codegen_backend/the_backend.rs
@@ -12,7 +12,6 @@ extern crate rustc_span;
12
extern crate rustc_symbol_mangling;
13
extern crate rustc_target;
14
15
-use rustc_codegen_ssa::back::linker::LinkerInfo;
16
use rustc_codegen_ssa::traits::CodegenBackend;
17
use rustc_codegen_ssa::{CodegenResults, CrateInfo};
18
use rustc_data_structures::fx::FxHashMap;
@@ -38,8 +37,7 @@ impl CodegenBackend for TheBackend {
38
37
allocator_module: None,
39
metadata_module: None,
40
metadata,
41
- linker_info: LinkerInfo::new(tcx, "fake_target_cpu".to_string()),
42
- crate_info: CrateInfo::new(tcx),
+ crate_info: CrateInfo::new(tcx, "fake_target_cpu".to_string()),
43
})
44
}
45
0 commit comments