repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add and use DominatorTreeBase::findNearestCommonDominator().
[llvm-complete.git]
/
test
/
C++Frontend
/
2003-09-30-ForIncrementExprBug2.cpp
blob
e07eb425d2869f101b909e20e038638ce751ac9e
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
// Test with an opaque type
4
5
struct
C
;
6
7
C
&
foo
();
8
9
void
foox
() {
10
for
(; ;
foo
());
11
}
12