URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [init/] [pmf1.C] - Rev 707
Go to most recent revision | Compare with Previous | Blame | View Log
// PR c++/14089
// { dg-do compile }
//
// C++ front end generated assignment between types that were not
// compatible in any sense visible to the optimizers.
struct pair {
typedef void (pair::*fp)();
int first;
pair::fp second;
pair(const int& a, const pair::fp& b) : first(a), second(b) {}
void f(const int& a, const pair::fp& b) { first = a; second = b; }
};
void op() {
pair(5, pair::fp());
}
Go to most recent revision | Compare with Previous | Blame | View Log