URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [abi/] [vcall1.C] - Rev 822
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do run }
// { dg-options "-w" }
extern "C" void abort ();
struct B;
B* b;
struct A {
virtual void f () {}
};
struct B : virtual public A {
B () {
b = this;
((A*) this)->f ();
}
virtual void f () {
if (this != b)
abort ();
}
};
struct C : public B {
};
struct D : public C, public B {
virtual void f () {}
};
int main () {
D d;
}
Go to most recent revision | Compare with Previous | Blame | View Log