]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_interface/tests.rs
Fix rebase fallout.
[rust.git] / src / librustc_interface / tests.rs
index 8c1dac21576f7b9f2ffaf856161499af8fdaeb3e..d39a5d3a073450a34ac27be7eda217dbb2c9354f 100644 (file)
@@ -17,7 +17,6 @@
 use syntax::symbol::sym;
 use syntax::edition::{Edition, DEFAULT_EDITION};
 use syntax;
-use syntax_expand::config::process_configure_mod;
 use rustc_data_structures::fx::FxHashSet;
 use rustc_errors::{ColorConfig, emitter::HumanReadableErrorType, registry};
 
@@ -32,7 +31,7 @@ fn build_session_options_and_crate_config(matches: getopts::Matches) -> (Options
 fn mk_session(matches: getopts::Matches) -> (Session, CfgSpecs) {
     let registry = registry::Registry::new(&[]);
     let (sessopts, cfg) = build_session_options_and_crate_config(matches);
-    let sess = build_session(sessopts, None, registry, process_configure_mod);
+    let sess = build_session(sessopts, None, registry);
     (sess, cfg)
 }