view gcc/testsuite/gcc.dg/pr42685.c @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-O -funroll-loops -fcompare-debug" } */

struct S {
 int i;
};

extern void baz(int);

static inline void bar(struct S *s)
{
  baz(s->i);
}

void foo(int *w, int cond, struct S *s)
{
  int i, n = 0;
  while (*w++ != 0) n++;
  for (i = 0; i < n; i++)
    if (cond == 0)
      bar(s + i);
}