2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / opt / inline4.C
blob2eaad115fc19f555436444109b987a8cf6336cfb
1 // { dg-options "-O2 -ftemplate-depth-20000" }
3 template <int I>
4 inline void g() { g<I-1>(); return; }
6 template <>
7 inline void g<0>() { int i; return; }
9 void h() {
10   g<250>();
13 // { dg-final { scan-assembler-not "\n_?_Z1gILi\[0-9\]+EEvv\[: \t\n\]"  } }