Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
20000707-1.c
blob: 5328dfa63d9e25a8b21b720580af0c46ed981079 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-options "-O2 -Wall" } */
extern
void
foo
(
void
*
here
);
extern
inline
void
bar
(
void
)
{
__label__ here
;
foo
(&&
here
);
here
:
;
}
void
baz
(
void
)
{
bar
();
}