aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr45071.c
blob: d1715db1b73153110d3cd6f26d895d1f3c21c0f8 (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
/* { dg-do compile } */
/* { dg-options "-O -ftree-vrp -ftree-vectorize" } */

struct A
{
  int i;
};

struct B
{
  struct A a;
};

extern void f4 (void *);

inline void
f3 (struct A *a)
{
  f4 (a);
  while (a->i);
}

static inline void
f2 (struct B *b)
{
  f3 (&b->a);
}

void
f1 ()
{
  struct B *b = 0;
  f2 (b);
}