@@ -347,27 +347,27 @@ macro_rules! make_mir_visitor {
347347 ty:: InstanceKind :: Item ( _def_id) => { }
348348
349349 ty:: InstanceKind :: Intrinsic ( _def_id)
350- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: VTableShim ( _def_id) )
351- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ReifyShim ( _def_id, _) )
350+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: VTable ( _def_id) )
351+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: Reify ( _def_id, _) )
352352 | ty:: InstanceKind :: Virtual ( _def_id, _)
353- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ThreadLocalShim ( _def_id) )
354- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ClosureOnceShim { call_once: _def_id, closure: _, track_caller: _ } )
355- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ConstructCoroutineInClosureShim {
353+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ThreadLocal ( _def_id) )
354+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ClosureOnce { call_once: _def_id, closure: _, track_caller: _ } )
355+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: ConstructCoroutineInClosure {
356356 coroutine_closure_def_id: _def_id,
357357 receiver_by_ref: _,
358358 } )
359359 | ty:: InstanceKind :: Shim ( ty:: ShimKind :: DropGlue ( _def_id, None ) ) => { }
360360
361- ty:: InstanceKind :: Shim ( ty:: ShimKind :: FnPtrShim ( _def_id, ty) )
361+ ty:: InstanceKind :: Shim ( ty:: ShimKind :: FnPtr ( _def_id, ty) )
362362 | ty:: InstanceKind :: Shim ( ty:: ShimKind :: DropGlue ( _def_id, Some ( ty) ) )
363- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: CloneShim ( _def_id, ty) )
364- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: FnPtrAddrShim ( _def_id, ty) )
363+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: Clone ( _def_id, ty) )
364+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: FnPtrAddr ( _def_id, ty) )
365365 | ty:: InstanceKind :: Shim ( ty:: ShimKind :: AsyncDropGlue ( _def_id, ty) )
366- | ty:: InstanceKind :: Shim ( ty:: ShimKind :: AsyncDropGlueCtorShim ( _def_id, ty) ) => {
366+ | ty:: InstanceKind :: Shim ( ty:: ShimKind :: AsyncDropGlueCtor ( _def_id, ty) ) => {
367367 // FIXME(eddyb) use a better `TyContext` here.
368368 self . visit_ty( $( & $mutability) ? * ty, TyContext :: Location ( location) ) ;
369369 }
370- ty:: InstanceKind :: Shim ( ty:: ShimKind :: FutureDropPollShim ( _def_id, proxy_ty, impl_ty) ) => {
370+ ty:: InstanceKind :: Shim ( ty:: ShimKind :: FutureDropPoll ( _def_id, proxy_ty, impl_ty) ) => {
371371 self . visit_ty( $( & $mutability) ? * proxy_ty, TyContext :: Location ( location) ) ;
372372 self . visit_ty( $( & $mutability) ? * impl_ty, TyContext :: Location ( location) ) ;
373373 }
0 commit comments