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
FSF GCC merge 02/23/03
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
20000707-1.c
blob
5328dfa63d9e25a8b21b720580af0c46ed981079
1
/* { dg-do compile } */
2
/* { dg-options "-O2 -Wall" } */
3
4
extern
void
foo
(
void
*
here
);
5
extern inline
void
bar
(
void
)
6
{
7
__label__ here
;
8
foo
(&&
here
);
9
here
:
10
;
11
}
12
13
void
baz
(
void
)
14
{
15
bar
();
16
}