forked from OSchip/llvm-project
[ASTImporter] Import every Decl in lambda record
Summary: Previously only the fields were imported. Now every Decl is imported. This way the destructor decl is not missing after import. Patch by balazske (Balázs Kéri) Reviewers: a.sidorin, shafik Reviewed By: shafik Subscribers: balazske, cfe-commits, Szelethus, martong, dkrupp Tags: #clang Differential Revision: https://reviews.llvm.org/D57740 llvm-svn: 354120
This commit is contained in:
parent
0b53e8454b
commit
302f300a7a
|
@ -7393,13 +7393,9 @@ ExpectedStmt ASTNodeImporter::VisitLambdaExpr(LambdaExpr *E) {
|
|||
// NOTE: lambda classes are created with BeingDefined flag set up.
|
||||
// It means that ImportDefinition doesn't work for them and we should fill it
|
||||
// manually.
|
||||
if (ToClass->isBeingDefined()) {
|
||||
for (auto FromField : FromClass->fields()) {
|
||||
auto ToFieldOrErr = import(FromField);
|
||||
if (!ToFieldOrErr)
|
||||
return ToFieldOrErr.takeError();
|
||||
}
|
||||
}
|
||||
if (ToClass->isBeingDefined())
|
||||
if (Error Err = ImportDeclContext(FromClass, /*ForceImport = */ true))
|
||||
return std::move(Err);
|
||||
|
||||
auto ToCallOpOrErr = import(E->getCallOperator());
|
||||
if (!ToCallOpOrErr)
|
||||
|
|
|
@ -2709,6 +2709,26 @@ TEST_P(ImportFunctions, ImportFunctionFromUnnamedNamespace) {
|
|||
2u);
|
||||
}
|
||||
|
||||
TEST_P(ImportFunctions, ImportImplicitFunctionsInLambda) {
|
||||
Decl *FromTU = getTuDecl(
|
||||
R"(
|
||||
void foo() {
|
||||
(void)[]() { ; };
|
||||
}
|
||||
)",
|
||||
Lang_CXX11);
|
||||
auto *FromD = FirstDeclMatcher<FunctionDecl>().match(
|
||||
FromTU, functionDecl(hasName("foo")));
|
||||
auto *ToD = Import(FromD, Lang_CXX);
|
||||
EXPECT_TRUE(ToD);
|
||||
CXXRecordDecl *LambdaRec =
|
||||
cast<LambdaExpr>(cast<CStyleCastExpr>(
|
||||
*cast<CompoundStmt>(ToD->getBody())->body_begin())
|
||||
->getSubExpr())
|
||||
->getLambdaClass();
|
||||
EXPECT_TRUE(LambdaRec->getDestructor());
|
||||
}
|
||||
|
||||
struct ImportFriendFunctions : ImportFunctions {};
|
||||
|
||||
TEST_P(ImportFriendFunctions, ImportFriendFunctionRedeclChainProto) {
|
||||
|
|
Loading…
Reference in New Issue