URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [abi/] [dtor1.C] - Rev 718
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile { target i?86-*-* x86_64-*-* } }
// { dg-require-effective-target ilp32 }
// { dg-options "-fabi-version=0" }
struct A {
virtual void a ();
};
struct B {
virtual ~B ();
};
struct C : public A, public B {
virtual void c ();
};
struct D : virtual public C {
virtual void d ();
};
void D::d () {}
// { dg-final { scan-assembler _ZTv0_n20_N1DD1Ev } }
Go to most recent revision | Compare with Previous | Blame | View Log