comparison gcc/testsuite/g++.dg/other/thunk2b.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
children
comparison
equal deleted inserted replaced
111:04ced10e8804 131:84e7813d76e9
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() {}