blob: 2298c8f207b26e0f4839ad6d662481f96e365dbe (
plain)
1
2
3
4
5
6
7
|
// RUN: clang-cc -emit-pch -x c -o %t.pch %S/c-index-pch.h &&
// RUN: clang-cc -include-pch %t.pch -x c -emit-pch -o %t.ast %s &&
// RUN: c-index-test %t.ast all | FileCheck -check-prefix=ALL %s
// CHECK-ALL: FunctionDecl=foo
// CHECK-ALL: VarDecl=bar
// CHECK-ALL: FunctionDecl=wibble
void wibble(int i);
|