Handle redeclarations properly at the index-test tool.

llvm-svn: 75605
This commit is contained in:
Argyrios Kyrtzidis 2009-07-14 03:20:31 +00:00
parent 1506d9bc25
commit 12563b8111
2 changed files with 18 additions and 8 deletions

View File

@ -0,0 +1,12 @@
// RUN: clang-cc -emit-pch %s -o %t.ast &&
// RUN: index-test %t.ast -point-at %s:8:4 -print-decls | count 2 &&
// RUN: index-test %t.ast -point-at %s:8:4 -print-defs | count 1
static void foo(int x);
static void bar(void) {
foo(10);
}
void foo(int x) {
}

View File

@ -134,15 +134,13 @@ static void ProcessDecl(Decl *D) {
case PrintDecls :
if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
while (FD) {
ASTLocation(FD).print(OS);
FD = FD->getPreviousDeclaration();
}
for (FunctionDecl::redecl_iterator I = FD->redecls_begin(),
E = FD->redecls_end(); I != E; ++I)
ASTLocation(*I).print(OS);
} else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
while (VD) {
ASTLocation(VD).print(OS);
VD = VD->getPreviousDeclaration();
}
for (VarDecl::redecl_iterator I = VD->redecls_begin(),
E = VD->redecls_end(); I != E; ++I)
ASTLocation(*I).print(OS);
} else
ASTLocation(D).print(OS);
break;