@@ -445,8 +445,6 @@ void SILGenFunction::emitDistributedActorReady(
445
445
446
446
// --- prepare conformance subs
447
447
auto genericSig = actorReadyMethod->getGenericSignature ();
448
- fprintf (stderr, " [%s:%d] (%s) GENERIC SIG\n " , __FILE__, __LINE__, __FUNCTION__);
449
- genericSig->dump ();
450
448
451
449
SubstitutionMap subs =
452
450
SubstitutionMap::get (genericSig,
@@ -478,9 +476,6 @@ void SILGenFunction::emitDistributedActorFactory(FuncDecl *fd) {
478
476
auto &C = getASTContext ();
479
477
SILLocation loc = fd;
480
478
481
- fd->dump ();
482
- F.dump ();
483
-
484
479
// ==== Prepare argument references
485
480
// --- Parameter: identity
486
481
SILArgument *identityArg = F.getArgument (0 );
@@ -535,15 +530,11 @@ void SILGenFunction::emitDistributedActorFactory(FuncDecl *fd) {
535
530
// type: SpecificDistributedActor
536
531
auto returnTy = getLoweredType (
537
532
F.mapTypeIntoContext (selfTyDecl->getDeclaredInterfaceType ()));
538
- fprintf (stderr, " [%s:%d] (%s) auto returnTy = selfArg.getType().getDeclaredInterfaceType();\n " , __FILE__, __LINE__, __FUNCTION__);
539
- returnTy.dump ();
540
533
541
534
// type: SpecificDistributedActor.Type
542
535
auto selfMetatype =
543
536
getLoweredType (F.mapTypeIntoContext (selfArg.getType ().getASTType ()));
544
537
SILValue selfMetatypeValue = B.createMetatype (loc, selfMetatype);
545
- fprintf (stderr, " [%s:%d] (%s) SILValue selfMetatypeValue = B.createMetatype(loc, selfMetatype);\n " , __FILE__, __LINE__, __FUNCTION__);
546
- selfMetatypeValue->dump ();
547
538
548
539
// --- get the uninitialized allocation from the runtime system.
549
540
FullExpr scope (Cleanups, CleanupLocation (fd));
@@ -595,9 +586,6 @@ void SILGenFunction::emitDistributedActorFactory(FuncDecl *fd) {
595
586
// B.createThrow(loc, error);
596
587
// }
597
588
}
598
-
599
- fprintf (stderr, " [%s:%d] (%s) DONE HERE\n " , __FILE__, __LINE__, __FUNCTION__);
600
- F.dump ();
601
589
}
602
590
603
591
/* *****************************************************************************/
0 commit comments