URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-stable/] [gcc-4.5.1/] [gcc/] [testsuite/] [g++.dg/] [abi/] [empty5.C] - Rev 826
Compare with Previous | Blame | View Log
// { dg-options "-fabi-version=0" }
struct A {};
struct B {
A a;
virtual void f () {}
};
struct C : public B, public A {};
C c;
int main () {
if ((void*) (A*) &c != &c)
return 1;
}