Skip to content

Commit 25e45ba

Browse files
committed
Fix test
1 parent b21cbfd commit 25e45ba

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/run-make-fulldeps/hotplug_codegen_backend/the_backend.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ extern crate rustc_span;
1212
extern crate rustc_symbol_mangling;
1313
extern crate rustc_target;
1414

15-
use rustc_codegen_ssa::back::linker::LinkerInfo;
1615
use rustc_codegen_ssa::traits::CodegenBackend;
1716
use rustc_codegen_ssa::{CodegenResults, CrateInfo};
1817
use rustc_data_structures::fx::FxHashMap;
@@ -38,8 +37,7 @@ impl CodegenBackend for TheBackend {
3837
allocator_module: None,
3938
metadata_module: None,
4039
metadata,
41-
linker_info: LinkerInfo::new(tcx, "fake_target_cpu".to_string()),
42-
crate_info: CrateInfo::new(tcx),
40+
crate_info: CrateInfo::new(tcx, "fake_target_cpu".to_string()),
4341
})
4442
}
4543

0 commit comments

Comments
 (0)