OSDN Git Service

* c-common.h (lang_post_pch_load): New variable.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / abi / rtti1.C
1 // Test that we don't emit the type_info for a polymorphic class other than
2 // with the vtable.
3
4 struct A {
5   virtual ~A();
6 };
7
8 void f ()
9 {
10   throw A();
11 }
12
13 // { dg-final { scan-assembler-dem-not {\ntypeinfo for A[: \t\n]} } }