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-10-27-VirtualBaseClassCrash.cpp
blob
f9fc80ee9407ba463a761645d9ad95905cffb5f0
1
// RUN: %llvmgxx -S %s -o - | llvm-as -f -o /dev/null
2
3
4
template
<
class
T
>
5
struct
super
{
6
int
Y
;
7
void
foo
();
8
};
9
10
template
<
class
T
>
11
struct
test
:
virtual
super
<
int
> {};
12
13
extern
test
<
int
>
X
;
14
15
void
foo
() {
16
X
.
foo
();
17
}