(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.target/
nvptx/
label-values.c
       1  /* { dg-do compile } */
       2  /* { dg-additional-options "-Wno-pedantic" } */
       3  
       4  int
       5  main (void)
       6  {
       7    goto L2;
       8   L1:
       9    return 0;
      10   L2:
      11    {
      12      void *ptr = &&L1; /* { dg-message "sorry, unimplemented: target cannot support label values" "" } */
      13    }
      14  }