blob: 80b46b060b57e52ff2bb622b4d0fad6b51deae9e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* { dg-require-effective-target label_values } */
int
f (void)
{
void *x = &&L2;
if (&&L3 - &&L1 > 1)
__builtin_abort();
L1: return 1;
L2: __builtin_abort ();
L3:;
}
|