blob: 789325d76a3514b2f85070587989ab623c1e6dd4 [file] [log] [blame]
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00001// RUN: clang-cc -emit-pch -x c -o %t.pch %S/c-index-pch.h
2// RUN: clang-cc -include-pch %t.pch -x c -emit-pch -o %t.ast %s
3// RUN: c-index-test %t.ast all | FileCheck -check-prefix=ALL %s
Douglas Gregor7d1d49d2009-10-16 20:01:17 +00004// RUN: c-index-test %t.ast local | FileCheck -check-prefix=LOCAL %s
5// ALL: FunctionDecl=foo
6// ALL: VarDecl=bar
7// ALL: FunctionDecl=wibble
8// ALL: FunctionDecl=wonka
9// LOCAL-NOT: FunctionDecl=foo
10// LOCAL-NOT: VarDecl=bar
11// LOCAL: FunctionDecl=wibble
12// LOCAL: FunctionDecl=wonka
Douglas Gregor52e71082009-10-16 18:18:30 +000013void wibble(int i);
Douglas Gregor7d1d49d2009-10-16 20:01:17 +000014void wonka(float);