blob: 313fae88f4f94fb652755156bd4654f88eaf726c [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -emit-pch -x c -o %t.pch %S/Inputs/c-index-pch.h
2// RUN: %clang_cc1 -include-pch %t.pch -x c -emit-pch -o %t.ast %s
Ted Kremenekf5d9c932009-11-17 18:09:14 +00003// RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s
Douglas Gregor7d1d49d2009-10-16 20:01:17 +00004// ALL: FunctionDecl=foo
5// ALL: VarDecl=bar
6// ALL: FunctionDecl=wibble
7// ALL: FunctionDecl=wonka
Douglas Gregor52e71082009-10-16 18:18:30 +00008void wibble(int i);
Douglas Gregor7d1d49d2009-10-16 20:01:17 +00009void wonka(float);