@@ -668,7 +668,7 @@ ExecutorBreadcrumb SILGenFunction::emitHopToTargetExecutor(
668668 // If we're calling from an actor method ourselves, then we'll want to hop
669669 // back to our own actor.
670670 auto breadcrumb = ExecutorBreadcrumb (emitGetCurrentExecutor (loc));
671- B.createHopToExecutor (loc, executor, /* mandatory*/ false );
671+ B.createHopToExecutor (loc. asAutoGenerated () , executor, /* mandatory*/ false );
672672 return breadcrumb;
673673}
674674
@@ -710,7 +710,7 @@ void SILGenFunction::emitHopToActorValue(SILLocation loc, ManagedValue actor) {
710710 " Builtin.hopToActor must be in an actor-independent function" );
711711 }
712712 SILValue executor = emitLoadActorExecutor (loc, actor);
713- B.createHopToExecutor (loc, executor, /* mandatory*/ true );
713+ B.createHopToExecutor (loc. asAutoGenerated () , executor, /* mandatory*/ true );
714714}
715715
716716void SILGenFunction::emitPreconditionCheckExpectedExecutor (
@@ -741,7 +741,7 @@ void SILGenFunction::emitPreconditionCheckExpectedExecutor(
741741
742742void ExecutorBreadcrumb::emit (SILGenFunction &SGF, SILLocation loc) {
743743 if (Executor)
744- SGF.B .createHopToExecutor (loc, Executor, /* mandatory*/ false );
744+ SGF.B .createHopToExecutor (loc. asAutoGenerated () , Executor, /* mandatory*/ false );
745745}
746746
747747SILValue SILGenFunction::emitGetCurrentExecutor (SILLocation loc) {
0 commit comments