view gcc/testsuite/g++.dg/other/cxa-atexit1.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 04ced10e8804
children
line wrap: on
line source

// { dg-do compile }
// { dg-require-effective-target cxa_atexit }
// { 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_" } }