URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [torture/] [pr43905.C] - Rev 693
Compare with Previous | Blame | View Log
extern void sf ( __const char *);
struct Matrix{
int operator[](int n){
sf ( __PRETTY_FUNCTION__);
}
int operator[](int n)const{
sf ( __PRETTY_FUNCTION__);
}
};
void calcmy(Matrix const &b, Matrix &c, int k){
b[k];
c[k];
}