[coroutines] Diagnose when promise types fail to declare either return_void or return_value.
Summary: According to the PDTS it's perfectly legal to have a promise type that defines neither `return_value` nor `return_void`. However a coroutine that uses such a promise type will almost always have UB, because it can never `co_return`. This patch changes Clang to diagnose such cases as an error. It also cleans up some of the diagnostic messages relating to member lookup in the promise type. Reviewers: GorNishanov, rsmith Reviewed By: GorNishanov Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D33534 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@303868 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- include/clang/Basic/DiagnosticSemaKinds.td 6 additions, 4 deletionsinclude/clang/Basic/DiagnosticSemaKinds.td
- lib/Sema/SemaCoroutine.cpp 37 additions, 11 deletionslib/Sema/SemaCoroutine.cpp
- test/SemaCXX/coreturn.cpp 0 additions, 13 deletionstest/SemaCXX/coreturn.cpp
- test/SemaCXX/coroutines.cpp 17 additions, 9 deletionstest/SemaCXX/coroutines.cpp
Loading
Please register or sign in to comment