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();
}