1
+ use rustc_abi:: ExternAbi ;
1
2
use rustc_ast:: ptr:: P ;
2
3
use rustc_ast:: visit:: AssocCtxt ;
3
4
use rustc_ast:: * ;
@@ -11,7 +12,6 @@ use rustc_middle::span_bug;
11
12
use rustc_middle:: ty:: { ResolverAstLowering , TyCtxt } ;
12
13
use rustc_span:: edit_distance:: find_best_match_for_name;
13
14
use rustc_span:: { DesugaringKind , Ident , Span , Symbol , kw, sym} ;
14
- use rustc_target:: spec:: abi;
15
15
use smallvec:: { SmallVec , smallvec} ;
16
16
use thin_vec:: ThinVec ;
17
17
use tracing:: instrument;
@@ -275,7 +275,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
275
275
ModKind :: Unloaded => panic ! ( "`mod` items should have been loaded by now" ) ,
276
276
} ,
277
277
ItemKind :: ForeignMod ( fm) => hir:: ItemKind :: ForeignMod {
278
- abi : fm. abi . map_or ( abi :: Abi :: FALLBACK , |abi| self . lower_abi ( abi) ) ,
278
+ abi : fm. abi . map_or ( ExternAbi :: FALLBACK , |abi| self . lower_abi ( abi) ) ,
279
279
items : self
280
280
. arena
281
281
. alloc_from_iter ( fm. items . iter ( ) . map ( |x| self . lower_foreign_item_ref ( x) ) ) ,
@@ -1470,23 +1470,23 @@ impl<'hir> LoweringContext<'_, 'hir> {
1470
1470
}
1471
1471
}
1472
1472
1473
- pub ( super ) fn lower_abi ( & mut self , abi : StrLit ) -> abi :: Abi {
1474
- abi :: lookup ( abi. symbol_unescaped . as_str ( ) ) . unwrap_or_else ( |err| {
1473
+ pub ( super ) fn lower_abi ( & mut self , abi : StrLit ) -> ExternAbi {
1474
+ rustc_abi :: lookup ( abi. symbol_unescaped . as_str ( ) ) . unwrap_or_else ( |err| {
1475
1475
self . error_on_invalid_abi ( abi, err) ;
1476
- abi :: Abi :: Rust
1476
+ ExternAbi :: Rust
1477
1477
} )
1478
1478
}
1479
1479
1480
- pub ( super ) fn lower_extern ( & mut self , ext : Extern ) -> abi :: Abi {
1480
+ pub ( super ) fn lower_extern ( & mut self , ext : Extern ) -> ExternAbi {
1481
1481
match ext {
1482
- Extern :: None => abi :: Abi :: Rust ,
1483
- Extern :: Implicit ( _) => abi :: Abi :: FALLBACK ,
1482
+ Extern :: None => ExternAbi :: Rust ,
1483
+ Extern :: Implicit ( _) => ExternAbi :: FALLBACK ,
1484
1484
Extern :: Explicit ( abi, _) => self . lower_abi ( abi) ,
1485
1485
}
1486
1486
}
1487
1487
1488
- fn error_on_invalid_abi ( & self , abi : StrLit , err : abi :: AbiUnsupported ) {
1489
- let abi_names = abi :: enabled_names ( self . tcx . features ( ) , abi. span )
1488
+ fn error_on_invalid_abi ( & self , abi : StrLit , err : rustc_abi :: AbiUnsupported ) {
1489
+ let abi_names = rustc_abi :: enabled_names ( self . tcx . features ( ) , abi. span )
1490
1490
. iter ( )
1491
1491
. map ( |s| Symbol :: intern ( s) )
1492
1492
. collect :: < Vec < _ > > ( ) ;
@@ -1495,7 +1495,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
1495
1495
abi : abi. symbol_unescaped ,
1496
1496
span : abi. span ,
1497
1497
explain : match err {
1498
- abi :: AbiUnsupported :: Reason { explain } => Some ( InvalidAbiReason ( explain) ) ,
1498
+ rustc_abi :: AbiUnsupported :: Reason { explain } => Some ( InvalidAbiReason ( explain) ) ,
1499
1499
_ => None ,
1500
1500
} ,
1501
1501
suggestion : suggested_name. map ( |suggested_name| InvalidAbiSuggestion {
0 commit comments