[PATCH] D139125: [clang] Correctly handle by-reference capture with an initializer that is a pack expansion in lambdas.
Jens Massberg via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Dec 2 03:24:01 PST 2022
massberg updated this revision to Diff 479581.
massberg added a comment.
Remove unnecessary code from test.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D139125/new/
https://reviews.llvm.org/D139125
Files:
clang/lib/Sema/TreeTransform.h
clang/test/SemaCXX/lambda-pack-expansion.cpp
clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
Index: clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
===================================================================
--- clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
+++ clang/unittests/ASTMatchers/ASTMatchersNodeTest.cpp
@@ -2306,6 +2306,30 @@
hasName("cc"), hasInitializer(integerLiteral(equals(1))))))))));
}
+TEST_P(ASTMatchersTest, LambdaCaptureTest_BindsToCaptureOfReferenceType) {
+ if (!GetParam().isCXX20OrLater()) {
+ return;
+ }
+ auto matcher = lambdaExpr(hasAnyCapture(
+ lambdaCapture(capturesVar(varDecl(hasType(referenceType()))))));
+ EXPECT_TRUE(matches("template <class ...T> void f(T &...args) {"
+ " [&...args = args] () mutable {"
+ " }();"
+ "}"
+ "int main() {"
+ " int a;"
+ " f(a);"
+ "}", matcher));
+ EXPECT_FALSE(matches("template <class ...T> void f(T &...args) {"
+ " [...args = args] () mutable {"
+ " }();"
+ "}"
+ "int main() {"
+ " int a;"
+ " f(a);"
+ "}", matcher));
+}
+
TEST(ASTMatchersTestObjC, ObjCMessageCalees) {
StatementMatcher MessagingFoo =
objcMessageExpr(callee(objcMethodDecl(hasName("foo"))));
Index: clang/test/SemaCXX/lambda-pack-expansion.cpp
===================================================================
--- /dev/null
+++ clang/test/SemaCXX/lambda-pack-expansion.cpp
@@ -0,0 +1,22 @@
+// RUN: %clang_cc1 -std=c++20 -Wno-unused-value -fsyntax-only -verify %s
+
+namespace GH49266 {
+struct X {
+ X() = default;
+ X(X const&) = delete; // expected-note {{'X' has been explicitly marked deleted here}}
+};
+
+void take_by_copy(auto &...args) {
+ [...args = args] {}(); // expected-error {{call to deleted constructor}}
+}
+
+void take_by_ref(auto &...args) {
+ [&...args = args] {}(); // args is passed by reference and not copied.
+}
+
+void foo() {
+ X x;
+ take_by_copy(x); // expected-note {{in instantiation of function template specialization}}
+ take_by_ref(x);
+}
+}
Index: clang/lib/Sema/TreeTransform.h
===================================================================
--- clang/lib/Sema/TreeTransform.h
+++ clang/lib/Sema/TreeTransform.h
@@ -13145,9 +13145,15 @@
}
Expr *NewExprInit = NewExprInitResult.get();
+ bool isReferenceType = (isa<PackExpansionType>(OldVD->getType())
+ ? cast<PackExpansionType>(OldVD->getType())
+ ->getPattern()
+ ->isReferenceType()
+ : OldVD->getType()->isReferenceType());
+
QualType NewInitCaptureType =
getSema().buildLambdaInitCaptureInitialization(
- C->getLocation(), OldVD->getType()->isReferenceType(),
+ C->getLocation(), isReferenceType,
EllipsisLoc, NumExpansions, OldVD->getIdentifier(),
cast<VarDecl>(C->getCapturedVar())->getInitStyle() !=
VarDecl::CInit,
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D139125.479581.patch
Type: text/x-patch
Size: 3200 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20221202/76e82279/attachment-0001.bin>
More information about the cfe-commits
mailing list