URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.dg/] [abi/] [rtti1.C] - Rev 26
Go to most recent revision | Compare with Previous | Blame | View Log
// Test that we don't emit the type_info for a polymorphic class other than
// with the vtable.
struct A {
virtual ~A();
};
void f ()
{
throw A();
}
// { dg-final { scan-assembler-dem-not {\ntypeinfo for A[: \t\n]} } }
Go to most recent revision | Compare with Previous | Blame | View Log