[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Kris Jusiak via Phabricator via cfe-commits
krzysztof-jusiak added a comment. In D66481#1637530 , @lebedev.ri wrote: > Doesn't this inadvertently allow them in every standard? That seems wrong. Good point, you are right, will fix it and resubmit 👍 Repository: rC Clang CHANGES SINCE LAST ACTIO

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Kris Jusiak via Phabricator via cfe-commits
krzysztof-jusiak added a comment. In D66481#1637525 , @riccibruno wrote: > Can you submit the patch with the full context (ie: git diff -U999) ? Sure, will do it Repository: rC Clang CHANGES SINCE LAST ACTION https://reviews.llvm.org/D66481/ne

[PATCH] D66481: [C++20] Support for lambdas in unevaluated context

2019-08-20 Thread Kris Jusiak via Phabricator via cfe-commits
krzysztof-jusiak created this revision. krzysztof-jusiak added a reviewer: rsmith. Herald added a project: clang. Herald added a subscriber: cfe-commits. Problem: - Lambdas in unevaluated context aren't supported in the newest clang yet but are required for our usage of jit. Solution: - Add su