[PATCH] D122586: Fix template instantiation of UDLs
Corentin Jabot via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 28 07:57:18 PDT 2022
cor3ntin added inline comments.
================
Comment at: clang/lib/Sema/TreeTransform.h:10516
TreeTransform<Derived>::TransformUserDefinedLiteral(UserDefinedLiteral *E) {
- if (FunctionDecl *FD = E->getDirectCallee())
- SemaRef.MarkFunctionReferenced(E->getBeginLoc(), FD);
- return SemaRef.MaybeBindToTemporary(E);
+ return TransformCallExpr(E);
}
----------------
erichkeane wrote:
> I THINK you have to do this by doing `getDerived().TransformCallExpr(E)`.
>
Oh yes, good point
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D122586/new/
https://reviews.llvm.org/D122586
More information about the cfe-commits
mailing list