mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-14 11:39:35 +00:00
98c05b286c
whether a Decl was deserialized from an AST file (any AST file). llvm-svn: 139438
10 lines
353 B
C
10 lines
353 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
|
|
// ALL: FunctionDecl=foo
|
|
// ALL: VarDecl=bar
|
|
// ALL: FunctionDecl=wibble
|
|
// ALL: FunctionDecl=wonka
|
|
void wibble(int i);
|
|
void wonka(float);
|