File tree 2 files changed +8
-3
lines changed
compiler/rustc_target/src/abi
2 files changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -3416,6 +3416,7 @@ dependencies = [
3416
3416
" measureme" ,
3417
3417
" object 0.36.4" ,
3418
3418
" rustc-demangle" ,
3419
+ " rustc_abi" ,
3419
3420
" rustc_ast" ,
3420
3421
" rustc_attr" ,
3421
3422
" rustc_codegen_ssa" ,
@@ -3456,6 +3457,7 @@ dependencies = [
3456
3457
" object 0.36.4" ,
3457
3458
" pathdiff" ,
3458
3459
" regex" ,
3460
+ " rustc_abi" ,
3459
3461
" rustc_arena" ,
3460
3462
" rustc_ast" ,
3461
3463
" rustc_attr" ,
@@ -3493,6 +3495,7 @@ name = "rustc_const_eval"
3493
3495
version = " 0.0.0"
3494
3496
dependencies = [
3495
3497
" either" ,
3498
+ " rustc_abi" ,
3496
3499
" rustc_apfloat" ,
3497
3500
" rustc_ast" ,
3498
3501
" rustc_attr" ,
@@ -3772,6 +3775,7 @@ name = "rustc_hir_typeck"
3772
3775
version = " 0.0.0"
3773
3776
dependencies = [
3774
3777
" itertools" ,
3778
+ " rustc_abi" ,
3775
3779
" rustc_ast" ,
3776
3780
" rustc_ast_ir" ,
3777
3781
" rustc_attr" ,
@@ -4027,6 +4031,7 @@ dependencies = [
4027
4031
" gsgdt" ,
4028
4032
" polonius-engine" ,
4029
4033
" rustc-rayon-core" ,
4034
+ " rustc_abi" ,
4030
4035
" rustc_apfloat" ,
4031
4036
" rustc_arena" ,
4032
4037
" rustc_ast" ,
@@ -4522,6 +4527,7 @@ name = "rustc_ty_utils"
4522
4527
version = " 0.0.0"
4523
4528
dependencies = [
4524
4529
" itertools" ,
4530
+ " rustc_abi" ,
4525
4531
" rustc_ast_ir" ,
4526
4532
" rustc_data_structures" ,
4527
4533
" rustc_errors" ,
Original file line number Diff line number Diff line change 1
1
use std:: fmt;
2
2
use std:: ops:: Deref ;
3
3
4
- pub use Float :: * ;
5
- pub use Integer :: * ;
6
- pub use Primitive :: * ;
4
+ use Float :: * ;
5
+ use Primitive :: * ;
7
6
use rustc_data_structures:: intern:: Interned ;
8
7
use rustc_macros:: HashStable_Generic ;
9
8
You can’t perform that action at this time.
0 commit comments