URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [g++.dg/] [opt/] [ptrmem4.C] - Rev 825
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-do compile }
// { dg-options "-O3" }
struct X { void foo (); };
template <typename>
inline void spawn (void (X::*fun_ptr)()) {}
void bar () {
void (X::*const comp)() = &X::foo;
spawn<int> (comp);
}
Go to most recent revision | Compare with Previous | Blame | View Log