local-label.c 214 B

123456789101112
  1. void f(unsigned long ip);
  2. static void g(void)
  3. {
  4. if (1) {
  5. f(({ __label__ x; x: (unsigned long)&&x; }));
  6. }
  7. f(({ __label__ x; x: (unsigned long)&&x; }));
  8. }
  9. /*
  10. * check-name: Local label
  11. */