(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
pr70190.c
       1  /* { dg-require-effective-target indirect_jumps } */
       2  /* { dg-require-effective-target label_values } */
       3  
       4  
       5  int
       6  fn1 ()
       7  {
       8    static char a[] = "foo";
       9    static void *b[] = { &&l1, &&l2 };
      10    goto *(b[1]);
      11   l1: goto *(void*)(__INTPTR_TYPE__)(a[0]);
      12   l2: return 0;
      13  }
      14