aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/torture/pr57864.c
blob: 93962c20e3fdb9c190873c4b9f049eb107fca4df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/* { dg-do compile } */

union U {
    double val;
    union U *ptr;
};

union U *d;
double a;
int b;
int c;

static void fn1(union U *p1, int p2, _Bool p3)
{
    union U *e;

    if (p2 == 0)
	a = ((union U*)((unsigned long)p1 & ~1))->val;

    if (b) {
	e = p1;
    } else if (c) {
	e = ((union U*)((unsigned long)p1 & ~1))->ptr;
	d = e;
    } else {
	e = 0;
	d = ((union U*)0)->ptr;
    }

    fn1 (e, 0, 0);
    fn1 (0, 0, p3);
}

void fn2 (void)
{
  fn1 (0, 0, 0);
}