aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/nvptx/label-values.c
blob: 350510e961e7c07b1e6c5ad46320a39f00d2be51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */
/* { dg-additional-options "-Wno-pedantic" } */

int
main (void)
{
  goto L2;
 L1:
  return 0;
 L2:
  {
    void *ptr = &&L1; /* { dg-message "sorry, unimplemented: target cannot support label values" "" } */
  }
}