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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Preprocessor
/
Inputs
/
cycle
/
a.h
blob
dd3ef35d61fc3095b13d7878864961e9db555c35
1
// Presence of 2 inclusion cycles
2
// b.h -> a.h -> b.h -> ...
3
// c.h -> a.h -> c.h -> ...
4
// makes it unfeasible to reach max inclusion depth in all possible ways. Need
5
// to stop earlier.
6
7
#include
"b.h"
8
#include
"c.h"