URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [debug/] [minimal1.C] - Rev 816
Compare with Previous | Blame | View Log
// PR debug/6387
// Verify that -g1 works with local class member functions.
void foo();
void bar() {
struct A { A() { foo(); } } a;
}