repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2013-05-29 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
thunk5.C
blob
15526bf9ee3217cf9a3e286a67307f013d0af9f5
1
// PR c++/35067
2
// The thunks should be weak even on targets without one-only support.
3
// { dg-require-weak "" }
4
// { dg-final { scan-assembler "weak.*ZTv" } }
5
6
struct A
7
{
8
virtual ~A() { }
9
};
10
11
struct B: virtual A { };
12
13
B b;