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
/
mangle15.C
blob
3c112e263f07c48f0ffb0b646fd4cdbec6d8f692
1
// { dg-do compile }
2
// { dg-options "-fabi-version=0" }
3
4
struct A {
5
template <typename T> int f ();
6
};
7
8
typedef int (A::*P)();
9
10
template <P> struct S {};
11
12
void g (S<&A::f<int> >) {}
13
14
// { dg-final { scan-assembler _Z1g1SIXadL_ZN1A1fIiEEivEEE } }