1 /* Test for computed jump into cond_expr: bug 17913.  */
2 /* { dg-require-effective-target indirect_jumps } */
3 /* { dg-require-effective-target label_values } */
4 
f(void)5 void f (void)
6 {
7   void *p = &&a;
8   1 ? 1 : ({ a : 1; });
9   goto *p;
10 }
11