repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
mangle35.C
blob
78d993344880754dd61b303e186e96cbf6d7b00a
1
// PR c++/38600
2
// { dg-final { scan-assembler "_Z3barIiE1AIX3fooIT_EEEv" } }
3
4
template<void (*)()> struct A {};
5
6
template<typename> void foo();
7
8
template<typename T> A<foo<T> > bar();
9
10
void baz()
11
{
12
bar<int>();
13
}