blob: 30654a395d6f5939d3ae78cca36ef76bacf9014f [file] [log] [blame]
/* Test for computed jump into cond_expr: bug 17913. */
void f (void)
{
void *p = &&a;
1 ? 1 : ({ a : 1; });
goto *p;
}