Merge pull request #80795 from al45tair/eng/PR-149058236-6.2

[Concurrency] Remove -executor-factory option and replace with magic type.
This commit is contained in:
Alastair Houghton
2025-05-04 18:29:30 +01:00
committed by GitHub
9 changed files with 47 additions and 87 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);