repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang] Implement lifetime analysis for lifetime_capture_by(X) (#115921)
[llvm-project.git]
/
clang
/
test
/
PCH
/
emit-dependencies.c
blob
8f44e61433ac5366560b3bf03d8c8abccaf6e229
1
// RUN: rm -f %t.pch
2
// RUN: %clang_cc1 -emit-pch -o %t.pch %S/Inputs/chain-decls1.h
3
// RUN: %clang_cc1 -include-pch %t.pch -fsyntax-only -MT %s.o -dependency-file - %s | FileCheck %s
4
// CHECK: chain-decls1.h
5
6
int
main
(
void
) {
7
f
();
8
return
0
;
9
}