1 void f(unsigned long ip);
g(void)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  */
12