summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/torture/pr66178.c
blob: ee09cf6bfd1c841e5eaac204888aed512a0de690 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile } */
/* { dg-require-effective-target label_values } */

typedef __UINTPTR_TYPE__ uintptr_t;

int test(void)
{
    static uintptr_t a =  ((char *)&&l1-(char *)&&l2)-1;
l1:
l2:
    return a;
}

int test2(void)
{
    static uintptr_t a =  ((char *)&&l2-(char *)&&l3)+((char *)&&l1-(char *)&&l2);
l1:
l2:
l3:
    return a;
}