@@ -20,11 +20,11 @@ use crate::ty::{
20
20
} ;
21
21
22
22
use polonius_engine:: Atom ;
23
- use rustc_data_structures :: bit_set:: BitMatrix ;
23
+ use rustc_index :: bit_set:: BitMatrix ;
24
24
use rustc_data_structures:: fx:: FxHashSet ;
25
25
use rustc_data_structures:: graph:: dominators:: { dominators, Dominators } ;
26
26
use rustc_data_structures:: graph:: { self , GraphPredecessors , GraphSuccessors } ;
27
- use rustc_data_structures :: indexed_vec :: { Idx , IndexVec } ;
27
+ use rustc_index :: vec :: { Idx , IndexVec } ;
28
28
use rustc_data_structures:: sync:: Lrc ;
29
29
use rustc_data_structures:: sync:: MappedReadGuard ;
30
30
use rustc_macros:: HashStable ;
@@ -581,7 +581,7 @@ impl BorrowKind {
581
581
///////////////////////////////////////////////////////////////////////////
582
582
// Variables and temps
583
583
584
- newtype_index ! {
584
+ rustc_index :: newtype_index! {
585
585
pub struct Local {
586
586
derive [ HashStable ]
587
587
DEBUG_FORMAT = "_{}" ,
@@ -994,7 +994,7 @@ pub struct UpvarDebuginfo {
994
994
///////////////////////////////////////////////////////////////////////////
995
995
// BasicBlock
996
996
997
- newtype_index ! {
997
+ rustc_index :: newtype_index! {
998
998
pub struct BasicBlock {
999
999
derive [ HashStable ]
1000
1000
DEBUG_FORMAT = "bb{}" ,
@@ -1832,7 +1832,7 @@ static_assert_size!(PlaceElem<'_>, 16);
1832
1832
/// need neither the `V` parameter for `Index` nor the `T` for `Field`.
1833
1833
pub type ProjectionKind = ProjectionElem < ( ) , ( ) > ;
1834
1834
1835
- newtype_index ! {
1835
+ rustc_index :: newtype_index! {
1836
1836
pub struct Field {
1837
1837
derive [ HashStable ]
1838
1838
DEBUG_FORMAT = "field[{}]"
@@ -2047,7 +2047,7 @@ impl Debug for PlaceBase<'_> {
2047
2047
///////////////////////////////////////////////////////////////////////////
2048
2048
// Scopes
2049
2049
2050
- newtype_index ! {
2050
+ rustc_index :: newtype_index! {
2051
2051
pub struct SourceScope {
2052
2052
derive [ HashStable ]
2053
2053
DEBUG_FORMAT = "scope[{}]" ,
@@ -2586,7 +2586,7 @@ impl<'tcx> TypeFoldable<'tcx> for UserTypeProjection {
2586
2586
}
2587
2587
}
2588
2588
2589
- newtype_index ! {
2589
+ rustc_index :: newtype_index! {
2590
2590
pub struct Promoted {
2591
2591
derive [ HashStable ]
2592
2592
DEBUG_FORMAT = "promoted[{}]"
@@ -2743,7 +2743,7 @@ pub struct UnsafetyCheckResult {
2743
2743
pub unsafe_blocks : Lrc < [ ( hir:: HirId , bool ) ] > ,
2744
2744
}
2745
2745
2746
- newtype_index ! {
2746
+ rustc_index :: newtype_index! {
2747
2747
pub struct GeneratorSavedLocal {
2748
2748
derive [ HashStable ]
2749
2749
DEBUG_FORMAT = "_{}" ,
0 commit comments