summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/pr16973.c
blob: 83274a186ba620915ed743c817ace1fdde0ec514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* We were removing the label "a" because
   we were removing the BB for it but forgot
   to add back the label.   */

/* { dg-options "" } */
/* { dg-require-effective-target label_values } */

void
f (void)
{
  static __SIZE_TYPE__ x = &&a - &&b;
  a : b : return;
}