Reformat using the new identifier sorting from rustfmt
This commit is contained in:
parent
1173204b36
commit
c682aa162b
1455 changed files with 7152 additions and 8384 deletions
|
@ -13,12 +13,12 @@ use rustc_data_structures::fx::FxIndexMap;
|
|||
use rustc_middle::mir::interpret::AllocId;
|
||||
use rustc_middle::ty;
|
||||
use rustc_middle::ty::TyCtxt;
|
||||
use rustc_span::def_id::{CrateNum, DefId};
|
||||
use rustc_span::Span;
|
||||
use rustc_span::def_id::{CrateNum, DefId};
|
||||
use scoped_tls::scoped_thread_local;
|
||||
use stable_mir::Error;
|
||||
use stable_mir::abi::Layout;
|
||||
use stable_mir::ty::IndexedVal;
|
||||
use stable_mir::Error;
|
||||
|
||||
use crate::rustc_smir::context::TablesWrapper;
|
||||
use crate::rustc_smir::{Stable, Tables};
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
use rustc_middle::mir::interpret::{alloc_range, AllocRange, Pointer};
|
||||
use rustc_middle::mir::ConstValue;
|
||||
use rustc_middle::mir::interpret::{AllocRange, Pointer, alloc_range};
|
||||
use stable_mir::Error;
|
||||
use stable_mir::mir::Mutability;
|
||||
use stable_mir::ty::{Allocation, ProvenanceMap};
|
||||
use stable_mir::Error;
|
||||
|
||||
use crate::rustc_smir::{Stable, Tables};
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ use stable_mir::{Crate, CrateDef, CrateItem, CrateNum, DefId, Error, Filename, I
|
|||
|
||||
use crate::rustc_internal::RustcInternal;
|
||||
use crate::rustc_smir::builder::BodyBuilder;
|
||||
use crate::rustc_smir::{alloc, new_item_kind, smir_crate, Stable, Tables};
|
||||
use crate::rustc_smir::{Stable, Tables, alloc, new_item_kind, smir_crate};
|
||||
|
||||
impl<'tcx> Context for TablesWrapper<'tcx> {
|
||||
fn target_info(&self) -> MachineInfo {
|
||||
|
|
|
@ -6,9 +6,9 @@ use rustc_middle::{bug, mir};
|
|||
use stable_mir::mir::alloc::GlobalAlloc;
|
||||
use stable_mir::mir::{ConstOperand, Statement, UserTypeProjection, VarDebugInfoFragment};
|
||||
use stable_mir::ty::{Allocation, ConstantKind, MirConst};
|
||||
use stable_mir::{opaque, Error};
|
||||
use stable_mir::{Error, opaque};
|
||||
|
||||
use crate::rustc_smir::{alloc, Stable, Tables};
|
||||
use crate::rustc_smir::{Stable, Tables, alloc};
|
||||
|
||||
impl<'tcx> Stable<'tcx> for mir::Body<'tcx> {
|
||||
type T = stable_mir::mir::Body;
|
||||
|
|
|
@ -6,7 +6,7 @@ use stable_mir::ty::{
|
|||
AdtKind, FloatTy, GenericArgs, GenericParamDef, IntTy, Region, RigidTy, TyKind, UintTy,
|
||||
};
|
||||
|
||||
use crate::rustc_smir::{alloc, Stable, Tables};
|
||||
use crate::rustc_smir::{Stable, Tables, alloc};
|
||||
|
||||
impl<'tcx> Stable<'tcx> for ty::AliasTyKind {
|
||||
type T = stable_mir::ty::AliasKind;
|
||||
|
@ -815,10 +815,12 @@ impl<'tcx> Stable<'tcx> for ty::RegionKind<'tcx> {
|
|||
index: early_reg.index,
|
||||
name: early_reg.name.to_string(),
|
||||
}),
|
||||
ty::ReBound(db_index, bound_reg) => RegionKind::ReBound(
|
||||
db_index.as_u32(),
|
||||
BoundRegion { var: bound_reg.var.as_u32(), kind: bound_reg.kind.stable(tables) },
|
||||
),
|
||||
ty::ReBound(db_index, bound_reg) => {
|
||||
RegionKind::ReBound(db_index.as_u32(), BoundRegion {
|
||||
var: bound_reg.var.as_u32(),
|
||||
kind: bound_reg.kind.stable(tables),
|
||||
})
|
||||
}
|
||||
ty::ReStatic => RegionKind::ReStatic,
|
||||
ty::RePlaceholder(place_holder) => {
|
||||
RegionKind::RePlaceholder(stable_mir::ty::Placeholder {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue