URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [lto/] [pr48042_0.C] - Rev 717
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-lto-do link }
// { dg-extra-ld-options "-r -nostdlib -g" }
class A {
virtual int x() = 0;
};
class B:public A {
int x();
};
int B::x() {
}
Go to most recent revision | Compare with Previous | Blame | View Log