aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr68715.c
blob: 28787b9721429f90b913c6df3cc31470627ac4dc (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
/* { dg-do compile } */
/* { dg-options "-O2 -floop-nest-optimize" } */

int a[1], c[1];
int b, d, e;

void
fn1 (int p1)
{
  for (;;)
    ;
}

int
fn3 ()
{
  for (; e; e++)
    c[e] = 2;
  for (; d; d--)
    a[d] = 8;
  return 0;
}

int fn5 (int);

int
fn2 ()
{
  fn3 ();
}

void
fn4 ()
{
  fn1 (b || fn5 (fn2 ()));
}