aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/bfin/loop-autoinc.c
blob: 3dc7182982c8468f5bea4cace59a6e046e06ccd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { dg-do compile } */
/* { dg-options "-O2" } */
/* { dg-final { scan-assembler " = \\\[\[PI\].\\+\\+\\\];" } } */
extern int x[];
extern void bar();
int foo ()
{
  int i;
  int sum = 0;
  for (i = 0; i < 100; i++) {
    sum += x[i];
    if (sum & 1)
      sum *= sum;
  }
  return sum;
}