URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [expr/] [cast10.C] - Rev 754
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// This used to error out because we would try to convert m to a short.
struct a {};
void b() {
int a::*m;
a *c;
short p = reinterpret_cast<char*>(&(c->*m)) - reinterpret_cast<char*>(c);
}
Go to most recent revision | Compare with Previous | Blame | View Log