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-11-04-ArrayConstructors.cpp
blob
4df4f9b6727b5923e9ea7496a64f8b4b136f2fc7
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
4
struct
Foo
{
5
Foo
(
int
);
6
~
Foo
();
7
};
8
void
foo
() {
9
struct
{
10
Foo name
;
11
}
Int
[] = {
1
};
12
}