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
PR tree-optimization/67955
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
abi
/
mangle9.C
blob
f3ededfb4d0611a496c8a5de7733ee13e683414b
1
// { dg-options "-fabi-version=0" }
2
3
template <typename Q>
4
void f (typename Q::X) {}
5
6
struct S {
7
typedef int X;
8
};
9
10
template void f<S> (int);
11
12
// { dg-final { scan-assembler _Z1fI1SEvNT_1XE } }