xref: /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/20000326-2.c (revision c87b03e512fc05ed6e0222f6fb0ae86264b1d05b)
1 #ifndef NO_LABEL_VALUES
2 extern int printk(const char *fmt, ...);
3 
foo(int x,int y)4 void foo (int x, int y)
5 {
6   __label__ here;
7   here:
8   printk ("", &&here);
9 }
10 
11 #else
12 int x;
13 #endif
14