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] Handle __declspec() attributes in using
[llvm-project.git]
/
clang
/
test
/
CodeGenCXX
/
vtable-cast-crash.cpp
blob
58f9e0bf8f76852881c718e92a2040aa12b25c87
1
// RUN: %clang_cc1 -emit-llvm-only -triple %itanium_abi_triple %s
2
struct
A
3
{
4
A
();
5
virtual
~
A
();
6
};
7
8
struct
B
:
A
9
{
10
B
();
11
~
B
();
12
};
13
14
B
::
B
()
15
{
16
}
17
18
B
::~
B
()
19
{
20
}
21