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
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20000518-1.c
blob
d2087796a8473850ae9000a9a70f0d280ed5a905
1
void
callit1
(
void
*);
2
3
extern
__inline__
void
test
()
4
{
5
__label__ l1
;
6
7
callit1
(&&
l1
);
8
9
l1
:;
10
11
}
12
13
14
void
dotest
()
15
{
16
test
();
17
}