aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/20000326-2.c
blob: 055260f6e641c53267fe6dfbec0bb57a25fb7449 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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