Merge pull request #80224 from glessard/revert-79789-custom-executors

Revert "[Concurrency] Provide a Swift interface for custom main and global executors."
This commit is contained in:
Dario Rexin
2025-03-22 13:49:13 -07:00
committed by GitHub
56 changed files with 426 additions and 3611 deletions

View File

@@ -1364,12 +1364,6 @@ static bool ParseLangArgs(LangOptions &Opts, ArgList &Args,
Opts.enableFeature(Feature::RegionBasedIsolation);
}
// Get the executor factory name
if (const Arg *A = Args.getLastArg(OPT_executor_factory)) {
printf("Got executor-factory option\n");
Opts.ExecutorFactory = A->getValue();
}
Opts.WarnImplicitOverrides =
Args.hasArg(OPT_warn_implicit_overrides);