[Concurrency] Remove asyncHandler attribute.

The `asyncHandler` attribute turned out to be the wrong solution
to the problem of creating a sync->async bridge. Remove it.
This commit is contained in:
Doug Gregor
2021-05-13 17:01:39 -07:00
parent 3823966e01
commit 2b9ca315fe
39 changed files with 33 additions and 713 deletions

View File

@@ -411,8 +411,6 @@ static bool ParseLangArgs(LangOptions &Opts, ArgList &Args,
Args.hasFlag(OPT_enable_infer_public_concurrent_value,
OPT_disable_infer_public_concurrent_value,
false);
Opts.EnableExperimentalAsyncHandler |=
Args.hasArg(OPT_enable_experimental_async_handler);
Opts.EnableExperimentalFlowSensitiveConcurrentCaptures |=
Args.hasArg(OPT_enable_experimental_flow_sensitive_concurrent_captures);