URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [g++.dg/] [opt/] [inline4.C] - Rev 764
Go to most recent revision | Compare with Previous | Blame | View Log
// { dg-options "-O2 -ftemplate-depth-20000" }
template <int I>
inline void g() { g<I-1>(); return; }
template <>
inline void g<0>() { int i; return; }
void h() {
g<250>();
}
// { dg-final { scan-assembler-not "\n_?_Z1gILi\[0-9\]+EEvv\[: \t\n\]" } }
Go to most recent revision | Compare with Previous | Blame | View Log