rt_gccstream/gcc/testsuite/gcc.c-torture/compile/20000326-2.c

14 lines
164 B
C

#ifndef NO_LABEL_VALUES
extern int printk(const char *fmt, ...);
void foo (int x, int y)
{
__label__ here;
here:
printk ("", &&here);
}
#else
int x;
#endif