(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
labels-2.c
       1  /* { dg-require-effective-target label_values } */
       2  
       3  struct bp { void *v, *b, *e; };
       4  f ()
       5  {
       6    struct bp x = { &&L2 };
       7    if (&&L3 - &&L1 > 1)
       8      abort ();
       9  L1:return 1;
      10  L2:abort ();
      11  L3:;
      12  }