OSDN Git Service

Fix PR tree-optimization/21520
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / pr17913.c
1 /* Test for computed jump into cond_expr: bug 17913.  */
2 void f (void) 
3
4   void *p = &&a;
5   1 ? 1 : ({ a : 1; }); 
6   goto *p;
7 }