mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-26 06:48:51 -04:00

- This is designed to make it obvious that %clang_cc1 is a "test variable" which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it can be useful to redefine what gets run as 'clang -cc1' (for example, to set a default target). llvm-svn: 91446
15 lines
552 B
C
15 lines
552 B
C
// 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
|
|
// RUN: c-index-test -test-load-tu %t.ast all | FileCheck -check-prefix=ALL %s
|
|
// RUN: c-index-test -test-load-tu %t.ast local | FileCheck -check-prefix=LOCAL %s
|
|
// ALL: FunctionDecl=foo
|
|
// ALL: VarDecl=bar
|
|
// ALL: FunctionDecl=wibble
|
|
// ALL: FunctionDecl=wonka
|
|
// LOCAL-NOT: FunctionDecl=foo
|
|
// LOCAL-NOT: VarDecl=bar
|
|
// LOCAL: FunctionDecl=wibble
|
|
// LOCAL: FunctionDecl=wonka
|
|
void wibble(int i);
|
|
void wonka(float);
|