mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
Fix tests
This commit is contained in:
@@ -314,7 +314,7 @@ macro_rules! run_driver {
|
||||
($args:expr, $callback:expr $(, $with_tcx:ident)?) => {{
|
||||
use rustc_driver::{Callbacks, Compilation, RunCompiler};
|
||||
use rustc_middle::ty::TyCtxt;
|
||||
use rustc_interface::{interface, Queries};
|
||||
use rustc_interface::interface;
|
||||
use stable_mir::CompilerError;
|
||||
use std::ops::ControlFlow;
|
||||
|
||||
|
||||
@@ -77,11 +77,10 @@ fn compile(code: String, output: PathBuf, sysroot: PathBuf, linker: Option<&Path
|
||||
};
|
||||
|
||||
interface::run_compiler(config, |compiler| {
|
||||
let linker = compiler.enter(|queries| {
|
||||
queries.global_ctxt().enter(|tcx| {
|
||||
let _ = tcx.analysis(());
|
||||
Linker::codegen_and_build_linker(tcx, &*compiler.codegen_backend)
|
||||
})
|
||||
let krate = rustc_interface::passes::parse(&compiler.sess);
|
||||
let linker = rustc_interface::create_and_enter_global_ctxt(&compiler, krate, |tcx| {
|
||||
let _ = tcx.analysis(());
|
||||
Linker::codegen_and_build_linker(tcx, &*compiler.codegen_backend)
|
||||
});
|
||||
linker.link(&compiler.sess, &*compiler.codegen_backend);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user