Don't add an imported function into its lexical context until *after*

we've set all of its parameters. Fixes <rdar://problem/8499598>;
thanks to Sean for the diagnosis.


git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@115387 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Douglas Gregor 2010-10-01 23:55:07 +00:00
Родитель a1aa9e36e6
Коммит 81134ad7a0
3 изменённых файлов: 12 добавлений и 2 удалений

Просмотреть файл

@ -1966,7 +1966,6 @@ Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) {
ToFunction->setAccess(D->getAccess());
ToFunction->setLexicalDeclContext(LexicalDC);
Importer.Imported(D, ToFunction);
LexicalDC->addDecl(ToFunction);
// Set the parameters.
for (unsigned I = 0, N = Parameters.size(); I != N; ++I) {
@ -1976,7 +1975,10 @@ Decl *ASTNodeImporter::VisitFunctionDecl(FunctionDecl *D) {
ToFunction->setParams(Parameters.data(), Parameters.size());
// FIXME: Other bits to merge?
// Add this function to the lexical context.
LexicalDC->addDecl(ToFunction);
return ToFunction;
}

Просмотреть файл

@ -6,3 +6,10 @@ struct B : A {
float y;
float foo();
};
struct C {
C(int i = 10);
C(const C&);
C &operator=(C&);
~C();
};

Просмотреть файл

@ -6,3 +6,4 @@ struct B : A {
int y;
int foo();
};