repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
other
/
thunk2b.C
blob
c8f4570923d8bde71547dd343de45edc0efeb2c7
1
// { dg-do compile { target arm*-*-* } }
2
// { dg-options "-mlong-calls -ffunction-sections" }
3
// { dg-additional-options "-fPIC" { target fpic } }
4
5
class a {
6
public:
7
virtual ~a();
8
};
9
10
class b : virtual a {};
11
12
class c : b {
13
~c();
14
};
15
16
c::~c() {}