summaryrefslogtreecommitdiffstats
path: root/tests/run-make-fulldeps/issue-19371/foo.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-make-fulldeps/issue-19371/foo.rs')
-rw-r--r--tests/run-make-fulldeps/issue-19371/foo.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/run-make-fulldeps/issue-19371/foo.rs b/tests/run-make-fulldeps/issue-19371/foo.rs
index 1a9464916..a0bbe3851 100644
--- a/tests/run-make-fulldeps/issue-19371/foo.rs
+++ b/tests/run-make-fulldeps/issue-19371/foo.rs
@@ -69,9 +69,8 @@ fn compile(code: String, output: PathBuf, sysroot: PathBuf) {
interface::run_compiler(config, |compiler| {
let linker = compiler.enter(|queries| {
queries.global_ctxt()?.enter(|tcx| tcx.analysis(()))?;
- let ongoing_codegen = queries.ongoing_codegen()?;
- queries.linker(ongoing_codegen)
+ queries.codegen_and_build_linker()
});
- linker.unwrap().link().unwrap();
+ linker.unwrap().link(&compiler.sess, &*compiler.codegen_backend).unwrap();
});
}