blob: 780f58775c9b7ea37e90e9aaa8cd58f4540d3437 [file] [log] [blame]
// PR c++/34949
// { dg-options "-O3" }
// { dg-add-options bind_pic_locally }
// { dg-final { scan-assembler-not "mov\[^\n\]*_ZTV" { target i?86-*-* x86_64-*-* } } }
class Foo
{
public:
virtual ~Foo();
};
Foo::~Foo()
{
}
class Bar : public Foo
{
public:
virtual ~Bar();
};
Bar::~Bar()
{
}