1/* PR tree-optimization/58164 */
2/* { dg-require-effective-target indirect_jumps } */
3
4int
5foo (void)
6{
7  int x = 0;
8  goto *&x;
9}
10