aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.c-torture/compile/pr17913.c
blob: 30654a395d6f5939d3ae78cca36ef76bacf9014f (plain)
1
2
3
4
5
6
7
/* Test for computed jump into cond_expr: bug 17913.  */
void f (void) 
{ 
  void *p = &&a;
  1 ? 1 : ({ a : 1; }); 
  goto *p;
}