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