================ @@ -254,6 +255,17 @@ forget to add the reinitialization for this additional member. Instead, it is safer to assign to the entire struct in one go, and this will also avoid the use-after-move warning. +Coroutines +---------- + +This check also searches for occurrences of "use-after-suspend" in C++ +coroutines. This can be used, for example, to detect when a coroutine accesses +thread-local data after a suspension point (i.e. `co_yield` or `co_await`), ---------------- EugeneZelenko wrote:
```suggestion thread-local data after a suspension point (i.e. ``co_yield`` or ``co_await``), ``` https://github.com/llvm/llvm-project/pull/172566 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
