[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-10-14 Thread Matheus Izvekov via Phabricator via cfe-commits
mizvekov updated this revision to Diff 467920. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134604/new/ https://reviews.llvm.org/D134604 Files:

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-10-09 Thread Matheus Izvekov via Phabricator via cfe-commits
mizvekov updated this revision to Diff 466365. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134604/new/ https://reviews.llvm.org/D134604 Files: clang-tools-extra/clangd/unittests/HoverTests.cpp clang/include/clang/Sema/Sema.h

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-09-27 Thread Louis Dionne via Phabricator via cfe-commits
ldionne added a comment. In D134604#3815634 , @mizvekov wrote: > I was aware of those discussions, and I even made a workaround to avoid this > extra cost of running unrelated pipelines. > The patch on the very bottom of this stack (D134079 >

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-09-26 Thread Matheus Izvekov via Phabricator via cfe-commits
mizvekov added a comment. In D134604#3814986 , @ldionne wrote: > As explained in more details here > (https://reviews.llvm.org/D133249#inline-1289205), it would be nice to stop > using the `DELETE.ME` idiom to kick off libc++ CI, unless you really

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-09-26 Thread Louis Dionne via Phabricator via cfe-commits
ldionne added a comment. As explained in more details here (https://reviews.llvm.org/D133249#inline-1289205), it would be nice to stop using the `DELETE.ME` idiom to kick off libc++ CI, unless you really think there's a good chance to cause failures in libc++ specifically. TLDR of the link:

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-09-25 Thread Matheus Izvekov via Phabricator via cfe-commits
mizvekov updated this revision to Diff 462738. Herald added subscribers: kadircet, arphaman. Herald added a project: clang-tools-extra. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D134604/new/ https://reviews.llvm.org/D134604 Files:

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-09-25 Thread Matheus Izvekov via Phabricator via cfe-commits
mizvekov edited the summary of this revision. mizvekov updated this revision to Diff 462735. Herald added a project: libc++. Herald added a subscriber: libcxx-commits. Herald added a reviewer: libc++. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[PATCH] D134604: [clang] Instiantiate early substituted entities with sugared template arguments

2022-09-25 Thread Matheus Izvekov via Phabricator via cfe-commits
mizvekov created this revision. Herald added a project: All. mizvekov requested review of this revision. Herald added a project: clang. Herald added a subscriber: cfe-commits. WIP - Not ready for review Signed-off-by: Matheus Izvekov Depends on D133874