[PATCH] D141572: [C++] [Coroutines] Deprecates the '-fcoroutines-ts' flag

Nikolas Klauser via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Mon Jan 16 10:35:25 PST 2023


philnik accepted this revision.
philnik added a comment.
This revision is now accepted and ready to land.

LGTM from the libc++ side of things % nit. I think @aaron.ballman should take another look at the Clang changes.



================
Comment at: libcxx/utils/generate_header_tests.py:22
 
+    "coroutine": "(defined(__cpp_impl_coroutine) && __cpp_impl_coroutine >= 201902L) || (defined(__cpp_coroutines) && __cpp_coroutines >= 201703L)",
+
----------------
A `TODO LLVM17: simplify this to __cplusplus >= 202002L` would be nice. 


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D141572/new/

https://reviews.llvm.org/D141572



More information about the cfe-commits mailing list