File tree 5 files changed +4
-8
lines changed
5 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -3506,10 +3506,12 @@ dependencies = [
3506
3506
" rustc_codegen_utils" ,
3507
3507
" rustc_data_structures" ,
3508
3508
" rustc_errors" ,
3509
+ " rustc_feature" ,
3509
3510
" rustc_fs_util" ,
3510
3511
" rustc_incremental" ,
3511
3512
" rustc_index" ,
3512
3513
" rustc_llvm" ,
3514
+ " rustc_session" ,
3513
3515
" rustc_target" ,
3514
3516
" smallvec 0.6.10" ,
3515
3517
" syntax" ,
Original file line number Diff line number Diff line change @@ -21,10 +21,12 @@ rustc_codegen_ssa = { path = "../librustc_codegen_ssa" }
21
21
rustc_codegen_utils = { path = " ../librustc_codegen_utils" }
22
22
rustc_data_structures = { path = " ../librustc_data_structures" }
23
23
rustc_errors = { path = " ../librustc_errors" }
24
+ rustc_feature = { path = " ../librustc_feature" }
24
25
rustc_fs_util = { path = " ../librustc_fs_util" }
25
26
rustc_incremental = { path = " ../librustc_incremental" }
26
27
rustc_index = { path = " ../librustc_index" }
27
28
rustc_llvm = { path = " ../librustc_llvm" }
29
+ rustc_session = { path = " ../librustc_session" }
28
30
rustc_target = { path = " ../librustc_target" }
29
31
smallvec = { version = " 0.6.7" , features = [" union" , " may_dangle" ] }
30
32
syntax = { path = " ../libsyntax" }
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ use crate::value::Value;
8
8
use rustc_codegen_ssa:: MemFlags ;
9
9
use rustc_codegen_ssa:: mir:: place:: PlaceRef ;
10
10
use rustc_codegen_ssa:: mir:: operand:: OperandValue ;
11
- use rustc_target:: abi:: call:: ArgAbi ;
12
11
use rustc:: bug;
13
12
use rustc_codegen_ssa:: traits:: * ;
14
13
use rustc_target:: abi:: call:: ArgAbi ;
Original file line number Diff line number Diff line change 23
23
use back:: write:: { create_target_machine, create_informational_target_machine} ;
24
24
use syntax_pos:: symbol:: Symbol ;
25
25
26
- <<<<<<< HEAD
27
26
extern crate rustc_demangle;
28
27
extern crate flate2;
29
28
#[ macro_use] extern crate bitflags;
@@ -37,17 +36,13 @@ extern crate rustc_incremental;
37
36
extern crate rustc_codegen_utils;
38
37
extern crate rustc_codegen_ssa;
39
38
extern crate rustc_fs_util;
40
- extern crate rustc_driver as _ ;
41
39
42
40
#[ macro_use] extern crate log;
43
41
extern crate smallvec;
44
42
extern crate syntax;
45
43
extern crate syntax_pos;
46
44
extern crate rustc_errors as errors;
47
- extern crate rustc_session ;
48
45
49
- =======
50
- >>>>>>> rustc: Link LLVM directly into rustc again
51
46
use rustc_codegen_ssa:: traits:: * ;
52
47
use rustc_codegen_ssa:: back:: write:: { CodegenContext , ModuleConfig , FatLTOInput } ;
53
48
use rustc_codegen_ssa:: back:: lto:: { SerializedModule , LtoModuleCodegen , ThinModule } ;
Original file line number Diff line number Diff line change @@ -42,8 +42,6 @@ use rustc_metadata::locator;
42
42
use rustc_codegen_utils:: codegen_backend:: CodegenBackend ;
43
43
use errors:: { PResult , registry:: Registry } ;
44
44
use rustc_interface:: { interface, Queries } ;
45
- use rustc_interface:: util:: get_codegen_sysroot;
46
- use rustc_interface:: interface;
47
45
use rustc_interface:: util:: get_builtin_codegen_backend;
48
46
use rustc_data_structures:: sync:: SeqCst ;
49
47
use rustc_feature:: { find_gated_cfg, UnstableFeatures } ;
You can’t perform that action at this time.
0 commit comments