repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
opt
/
inline4.C
blob
2eaad115fc19f555436444109b987a8cf6336cfb
1
// { dg-options "-O2 -ftemplate-depth-20000" }
2
3
template <int I>
4
inline void g() { g<I-1>(); return; }
5
6
template <>
7
inline void g<0>() { int i; return; }
8
9
void h() {
10
g<250>();
11
}
12
13
// { dg-final { scan-assembler-not "\n_?_Z1gILi\[0-9\]+EEvv\[: \t\n\]" } }