Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [coroutines] Wrap the body of the coroutine in try-catch | Gor Nishanov | 2017-05-22 | 1 | -0/+37 |
Summary: If unhandled_exception member function is present in the coroutine promise, wrap the body of the coroutine in: ``` try { body } catch(...) { promise.unhandled_exception(); } ``` Reviewers: EricWF, rnk, rsmith Reviewed By: rsmith Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D31692 llvm-svn: 303583 |