blob: cbd078633c11ecc9751515524496cade75aa1233 [file] [log] [blame]
Daniel Dunbar1787b702009-11-08 01:46:19 +00001// RUN: clang-cc -emit-pch -x c -o %t.pch %S/Inputs/c-index-pch.h
Daniel Dunbar4fcfde42009-11-08 01:45:36 +00002// 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);