freebsd-dev/test/Index/c-index-pch.c

10 lines
353 B
C
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -emit-pch -x c -o %t.pch %S/Inputs/c-index-pch.h
// RUN: %clang_cc1 -include-pch %t.pch -x c -emit-pch -o %t.ast %s
2009-11-18 14:59:57 +00:00
// RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s
2009-10-23 14:22:18 +00:00
// ALL: FunctionDecl=foo
// ALL: VarDecl=bar
// ALL: FunctionDecl=wibble
// ALL: FunctionDecl=wonka
void wibble(int i);
void wonka(float);