Daniel Dunbar | a572887 | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // 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 Kremenek | f5d9c93 | 2009-11-17 18:09:14 +0000 | [diff] [blame] | 3 | // RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s |
| 4 | // RUN: c-index-test -test-load-tu %t.ast local | FileCheck -check-prefix=LOCAL %s |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 5 | // ALL: FunctionDecl=foo |
| 6 | // ALL: VarDecl=bar |
| 7 | // ALL: FunctionDecl=wibble |
| 8 | // ALL: FunctionDecl=wonka |
| 9 | // LOCAL-NOT: FunctionDecl=foo |
| 10 | // LOCAL-NOT: VarDecl=bar |
| 11 | // LOCAL: FunctionDecl=wibble |
| 12 | // LOCAL: FunctionDecl=wonka |
Douglas Gregor | 52e7108 | 2009-10-16 18:18:30 +0000 | [diff] [blame] | 13 | void wibble(int i); |
Douglas Gregor | 7d1d49d | 2009-10-16 20:01:17 +0000 | [diff] [blame] | 14 | void wonka(float); |