blob: cf58700d4a098083afd7f938f7fd324871bb14f9 [file] [log] [blame]
/* Test for computed jump into cond_expr: bug 17913. */
/* { dg-require-effective-target indirect_jumps } */
/* { dg-require-effective-target label_values } */
void f (void)
{
void *p = &&a;
1 ? 1 : ({ a : 1; });
goto *p;
}