URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [other/] [offsetof7.C] - Rev 701
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/50608
// Testcase by <dberger@oubliette.org>
// { dg-do compile }
struct A {
int offset;
};
struct B: public A {
};
struct C {
A a;
B b;
};
int fails = __builtin_offsetof (C, b.offset);
Go to most recent revision | Compare with Previous | Blame | View Log