aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr82819.c
blob: ed4b1b6ed53cac03e31ea34a5a2b7458f14f422e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* { dg-do compile } */
/* { dg-options "-O2 -floop-nest-optimize" } */

short int *ts;

void
c2 (unsigned long long int s4, int ns)
{
  short int *b2 = (short int *)&ns;

  while (ns != 0)
    {
      int xn;

      for (xn = 0; xn < 3; ++xn)
	for (*b2 = 0; *b2 < 2; ++*b2)
	  s4 += xn;
      if (s4 != 0)
	b2 = ts;
      ++ns;
    }
}