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

This reverts commit 06f6358067, reversing
changes made to 033f6679e8.
This commit is contained in:
Alastair Houghton
2025-03-24 10:14:22 +00:00
parent c824be3052
commit 47fa71787f
56 changed files with 3613 additions and 429 deletions

View File

@@ -1364,6 +1364,12 @@ 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);