2013-05-29 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / vt2.C
bloba77db38755aee55e024740dfb47e412b36edf5e4
1 // PR c++/34949
2 // { dg-options "-O3" }
3 // { dg-final { scan-assembler-not "mov\[^\n\]*_ZTV" { target i?86-*-* x86_64-*-* } } }
5 class Foo
7 public:
8   virtual ~Foo();
9 };
11 Foo::~Foo()
16 class Bar : public Foo
18 public:
19   virtual ~Bar();
22 Bar::~Bar()