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