view gcc/testsuite/gcc.dg/pr45071.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { 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);
}