view gcc/testsuite/gcc.dg/graphite/pr68715-2.c @ 111:04ced10e8804

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

/* { dg-do compile } */
/* { dg-options "-Ofast -floop-interchange" } */

int a, b, c, d, f, g;
int e[1], h[1];
void fn2 ();
void fn3 ();
void
fn1 ()
{
  fn2 ();
  b = 0;
  for (; b < 10; b++)
    ;
}

void
fn2 ()
{
  if (a)
    {
      fn3 ();
      c = d;
    }
}

void
fn3 ()
{
  for (; g; g++)
    e[g] = 2;
  if (f)
    for (; g; g++)
      h[g] = 5;
}