about summary refs log tree commit diff
path: root/src/test/run-make/execution-engine
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-04-06 17:31:16 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-04-06 17:31:16 +0530
commit552af51ffb9f4ae08a7ee3bf27b0e8309006ca6f (patch)
tree30b2cefa099bea233f2e257116c5ec99589aaa63 /src/test/run-make/execution-engine
parentaf7b00b68fc7960e98fb914be52d9a6a16fe2224 (diff)
parente8a8dfb056fb3654bacd6aaa6acbc4536358df23 (diff)
downloadrust-552af51ffb9f4ae08a7ee3bf27b0e8309006ca6f.tar.gz
rust-552af51ffb9f4ae08a7ee3bf27b0e8309006ca6f.zip
Rollup merge of #32570 - eddyb:tis-but-a-front, r=nikomatsakis
 r? @nikomatsakis

Conflicts:
	src/librustc_save_analysis/lib.rs
	src/libsyntax/ast_util.rs
Diffstat (limited to 'src/test/run-make/execution-engine')
-rw-r--r--src/test/run-make/execution-engine/test.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/test/run-make/execution-engine/test.rs b/src/test/run-make/execution-engine/test.rs
index 81ad276ca68..91b4f5f30ad 100644
--- a/src/test/run-make/execution-engine/test.rs
+++ b/src/test/run-make/execution-engine/test.rs
@@ -14,7 +14,6 @@
 extern crate libc;
 extern crate rustc;
 extern crate rustc_driver;
-extern crate rustc_front;
 extern crate rustc_lint;
 extern crate rustc_llvm as llvm;
 extern crate rustc_metadata;
@@ -28,13 +27,13 @@ use std::rc::Rc;
 use std::thread::Builder;
 
 use rustc::dep_graph::DepGraph;
-use rustc::front::map as ast_map;
+use rustc::hir::map as ast_map;
 use rustc::middle::cstore::{CrateStore, LinkagePreference};
 use rustc::ty;
 use rustc::session::config::{self, basic_options, build_configuration, Input, Options};
 use rustc::session::build_session;
 use rustc_driver::{driver, abort_on_err};
-use rustc_front::lowering::{lower_crate, LoweringContext};
+use rustc::hir::lowering::{lower_crate, LoweringContext};
 use rustc_resolve::MakeGlobMap;
 use rustc_metadata::cstore::CStore;
 use libc::c_void;