aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/pr45472.c
blob: 573e83d700c02ab2a346f88f94beab2b06d14100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-do compile { target powerpc*-*-* ia64-*-* x86_64-*-* } } */
/* { dg-options "-O -fschedule-insns2 -fselective-scheduling2" } */

struct S
{
  volatile long vl;
  int i;
};
struct S s1, s2;

void
foo (int j, int c)
{
  int i;
  for (i = 0; i <= j; i++)
    {
      if (c)
	s2.vl += s1.vl;
      s1 = s2;
    }
}