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
/
goto.C
blob
f138ec2be93a282d07ae3c004d7f1820f4ad6077
1
// { dg-do assemble }
2
3
template<class T>
4
void compute(T) {
5
goto Exit;
6
Exit: ;
7
}
8
9
int main()
10
{
11
compute(0);
12
}