forked from OSchip/llvm-project
[Modules] Fix tiny bug where we failed to get the canonical decl when
deserializing an inherited constructor. This is the exact same logic we use when deserializing method overrides for the same reason: the canonical decl may end up pinned to a different decl when we are improting modules, we need to re-pin to the canonical one during reading. My test case for this will come in a subsequent commit. I was trying to test a more tricky bug fix and the test case happened to tickle this bug as well. llvm-svn: 233325
This commit is contained in:
parent
b051389f04
commit
36e25f4771
|
@ -1628,7 +1628,7 @@ void ASTDeclReader::VisitCXXConstructorDecl(CXXConstructorDecl *D) {
|
|||
|
||||
if (auto *CD = ReadDeclAs<CXXConstructorDecl>(Record, Idx))
|
||||
if (D->isCanonicalDecl())
|
||||
D->setInheritedConstructor(CD);
|
||||
D->setInheritedConstructor(CD->getCanonicalDecl());
|
||||
D->IsExplicitSpecified = Record[Idx++];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue