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
x86: Tune Skylake, Cannonlake and Icelake as Haswell
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
niklas02.C
blob
d47b5d1e1422c7a4efdab3c74a73a85f340711d5
1
// { dg-do assemble }
2
3
struct B { int foo (); };
4
int B::foo() { return 37; }
5
6
template <class A> struct X {
7
void f(int);
8
};
9
10
template <class A> void X<A>::f (int jj)
11
{}
12
13
X<int> x;
14
15
void xxx () { x.f (1); }