From: Richard Smith Date: Wed, 26 Oct 2016 02:31:56 +0000 (+0000) Subject: [modules] Fix assert if multiple update records provide a definition for a X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5de769581c93b8fe0dfe48ec085053d111512376;p=clang [modules] Fix assert if multiple update records provide a definition for a class template specialization and that specialization has attributes. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285160 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Serialization/ASTReaderDecl.cpp b/lib/Serialization/ASTReaderDecl.cpp index 94097cd2e1..07df7548e5 100644 --- a/lib/Serialization/ASTReaderDecl.cpp +++ b/lib/Serialization/ASTReaderDecl.cpp @@ -3930,7 +3930,10 @@ void ASTDeclReader::UpdateDecl(Decl *D, ModuleFile &ModuleFile, if (Record[Idx++]) { AttrVec Attrs; Reader.ReadAttributes(F, Attrs, Record, Idx); - D->setAttrsImpl(Attrs, Reader.getContext()); + // If the declaration already has attributes, we assume that some other + // AST file already loaded them. + if (!D->hasAttrs()) + D->setAttrsImpl(Attrs, Reader.getContext()); } break; } diff --git a/test/Modules/Inputs/templates-left.h b/test/Modules/Inputs/templates-left.h index cbe89434f9..4f7abeef1f 100644 --- a/test/Modules/Inputs/templates-left.h +++ b/test/Modules/Inputs/templates-left.h @@ -70,3 +70,5 @@ namespace EmitDefaultedSpecialMembers { inline int *getStaticDataMemberLeft() { return WithUndefinedStaticDataMember::undefined; } + +inline WithAttributes make_with_attributes_left() { return WithAttributes(); } diff --git a/test/Modules/Inputs/templates-right.h b/test/Modules/Inputs/templates-right.h index 32487c60c2..bb3f7c3018 100644 --- a/test/Modules/Inputs/templates-right.h +++ b/test/Modules/Inputs/templates-right.h @@ -51,3 +51,5 @@ void outOfLineInlineUseRightH(void (OutOfLineInline::*)() = &OutOfLineInlin inline int *getStaticDataMemberRight() { return WithUndefinedStaticDataMember::undefined; } + +inline WithAttributes make_with_attributes_right() { return WithAttributes(); } diff --git a/test/Modules/Inputs/templates-top.h b/test/Modules/Inputs/templates-top.h index a082683523..207d705432 100644 --- a/test/Modules/Inputs/templates-top.h +++ b/test/Modules/Inputs/templates-top.h @@ -58,3 +58,8 @@ namespace EmitDefaultedSpecialMembers { template struct WithUndefinedStaticDataMember { static T undefined; }; + +template struct __attribute__((packed, aligned(2))) WithAttributes { + T value; +}; +WithAttributes *get_with_attributes(); diff --git a/test/Modules/templates.mm b/test/Modules/templates.mm index cd80e2480b..79e975a1ad 100644 --- a/test/Modules/templates.mm +++ b/test/Modules/templates.mm @@ -116,4 +116,9 @@ void testStaticDataMember() { (void) getStaticDataMemberRight(); } - +void testWithAttributes() { + auto a = make_with_attributes_left(); + auto b = make_with_attributes_right(); + static_assert(alignof(decltype(a)) == 2, ""); + static_assert(alignof(decltype(b)) == 2, ""); +}