@@ -8,7 +8,7 @@ use rustc_middle::ty::adjustment::PointerCoercion;
88use rustc_middle:: ty:: layout:: { IntegerExt , LayoutOf , TyAndLayout } ;
99use rustc_middle:: ty:: { self , FloatTy , Ty , TypeAndMut } ;
1010use rustc_target:: abi:: Integer ;
11- use rustc_type_ir:: sty :: TyKind :: * ;
11+ use rustc_type_ir:: TyKind :: * ;
1212
1313use super :: {
1414 util:: ensure_monomorphic_enough, FnVal , ImmTy , Immediate , InterpCx , Machine , OpTy , PlaceTy ,
@@ -185,7 +185,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
185185 src : & ImmTy < ' tcx , M :: Provenance > ,
186186 cast_to : TyAndLayout < ' tcx > ,
187187 ) -> InterpResult < ' tcx , ImmTy < ' tcx , M :: Provenance > > {
188- use rustc_type_ir:: sty :: TyKind :: * ;
188+ use rustc_type_ir:: TyKind :: * ;
189189
190190 let val = match src. layout . ty . kind ( ) {
191191 // Floating point
@@ -310,7 +310,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
310310 where
311311 F : Float + Into < Scalar < M :: Provenance > > + FloatConvert < Single > + FloatConvert < Double > ,
312312 {
313- use rustc_type_ir:: sty :: TyKind :: * ;
313+ use rustc_type_ir:: TyKind :: * ;
314314
315315 fn adjust_nan <
316316 ' mir ,
0 commit comments