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
Merge with main truk.
[official-gcc.git]
/
gcc
/
testsuite
/
c-c++-common
/
asmgoto-3.c
blob
5224429a3ce3fe3f5e2b1b842629917fdaf1d513
1
/* { dg-do compile } */
2
/* { dg-options "-Wunused" } */
3
4
int
foo
()
5
{
6
asm goto
(
""
: : : :
label
);
7
return
1
;
8
label
:
9
return
0
;
10
}