summaryrefslogtreecommitdiffstats
path: root/test/Index/c-index-pch.c
blob: 1ce1085251863436004343029618e3a45b8b7df5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: clang-cc -emit-pch -x c -o %t.pch %S/Inputs/c-index-pch.h
// RUN: clang-cc -include-pch %t.pch -x c -emit-pch -o %t.ast %s
// RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s
// RUN: c-index-test -test-load-tu %t.ast local | FileCheck -check-prefix=LOCAL %s
// ALL: FunctionDecl=foo
// ALL: VarDecl=bar
// ALL: FunctionDecl=wibble
// ALL: FunctionDecl=wonka
// LOCAL-NOT: FunctionDecl=foo
// LOCAL-NOT: VarDecl=bar
// LOCAL: FunctionDecl=wibble
// LOCAL: FunctionDecl=wonka
void wibble(int i);
void wonka(float);