@@ -225,7 +225,7 @@ pub trait Analysis<'tcx>: AnalysisDomain<'tcx> {
225225 block : BasicBlock ,
226226 func : & mir:: Operand < ' tcx > ,
227227 args : & [ mir:: Operand < ' tcx > ] ,
228- return_place : & mir:: Place < ' tcx > ,
228+ return_place : mir:: Place < ' tcx > ,
229229 ) ;
230230
231231 /// Updates the current dataflow state with the effect of resuming from a `Yield` terminator.
@@ -238,7 +238,7 @@ pub trait Analysis<'tcx>: AnalysisDomain<'tcx> {
238238 & self ,
239239 _state : & mut BitSet < Self :: Idx > ,
240240 _resume_block : BasicBlock ,
241- _resume_place : & mir:: Place < ' tcx > ,
241+ _resume_place : mir:: Place < ' tcx > ,
242242 ) {
243243 }
244244
@@ -251,7 +251,7 @@ pub trait Analysis<'tcx>: AnalysisDomain<'tcx> {
251251 & self ,
252252 _state : & mut BitSet < Self :: Idx > ,
253253 _block : BasicBlock ,
254- _enum_place : & mir:: Place < ' tcx > ,
254+ _enum_place : mir:: Place < ' tcx > ,
255255 _adt : & ty:: AdtDef ,
256256 _variant : VariantIdx ,
257257 ) {
@@ -332,15 +332,15 @@ pub trait GenKillAnalysis<'tcx>: Analysis<'tcx> {
332332 block : BasicBlock ,
333333 func : & mir:: Operand < ' tcx > ,
334334 args : & [ mir:: Operand < ' tcx > ] ,
335- return_place : & mir:: Place < ' tcx > ,
335+ return_place : mir:: Place < ' tcx > ,
336336 ) ;
337337
338338 /// See `Analysis::apply_yield_resume_effect`.
339339 fn yield_resume_effect (
340340 & self ,
341341 _trans : & mut BitSet < Self :: Idx > ,
342342 _resume_block : BasicBlock ,
343- _resume_place : & mir:: Place < ' tcx > ,
343+ _resume_place : mir:: Place < ' tcx > ,
344344 ) {
345345 }
346346
@@ -349,7 +349,7 @@ pub trait GenKillAnalysis<'tcx>: Analysis<'tcx> {
349349 & self ,
350350 _state : & mut impl GenKill < Self :: Idx > ,
351351 _block : BasicBlock ,
352- _enum_place : & mir:: Place < ' tcx > ,
352+ _enum_place : mir:: Place < ' tcx > ,
353353 _adt : & ty:: AdtDef ,
354354 _variant : VariantIdx ,
355355 ) {
@@ -402,7 +402,7 @@ where
402402 block : BasicBlock ,
403403 func : & mir:: Operand < ' tcx > ,
404404 args : & [ mir:: Operand < ' tcx > ] ,
405- return_place : & mir:: Place < ' tcx > ,
405+ return_place : mir:: Place < ' tcx > ,
406406 ) {
407407 self . call_return_effect ( state, block, func, args, return_place) ;
408408 }
@@ -411,7 +411,7 @@ where
411411 & self ,
412412 state : & mut BitSet < Self :: Idx > ,
413413 resume_block : BasicBlock ,
414- resume_place : & mir:: Place < ' tcx > ,
414+ resume_place : mir:: Place < ' tcx > ,
415415 ) {
416416 self . yield_resume_effect ( state, resume_block, resume_place) ;
417417 }
@@ -420,7 +420,7 @@ where
420420 & self ,
421421 state : & mut BitSet < Self :: Idx > ,
422422 block : BasicBlock ,
423- enum_place : & mir:: Place < ' tcx > ,
423+ enum_place : mir:: Place < ' tcx > ,
424424 adt : & ty:: AdtDef ,
425425 variant : VariantIdx ,
426426 ) {
0 commit comments