blob: 2298c8f207b26e0f4839ad6d662481f96e365dbe [file] [log] [blame]
Douglas Gregor52e71082009-10-16 18:18:30 +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
4// CHECK-ALL: FunctionDecl=foo
5// CHECK-ALL: VarDecl=bar
6// CHECK-ALL: FunctionDecl=wibble
7void wibble(int i);