aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/other/cxa-atexit1.C
blob: a51f3340142673add9647fcd2ac61a10a9a18ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// { dg-do compile }
// { dg-options "-O2 -fuse-cxa-atexit" }

# 1 "cxa-atexit1.C"
struct A
{
  struct B
  {
    B ();
    ~B ();
  };
};
static A::B b;
# 1 "cxa-atexit1.h" 1
#pragma interface
template <class T> struct C
{
  ~C (void);
};
struct D : public C<bool>
{
  D (void) : C<bool> () { }
};
# 55 "cxa-atexit1.C" 2

// { dg-final { scan-assembler-not ".gnu.linkonce.t.__tcf_" } }