aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/graphite/pr54094.c
blob: ee99110b89c8924136a13b7424f04291d6d78d65 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-options "-O2 -floop-parallelize-all -floop-nest-optimize" } */
void dwt_deinterleave_h(int *a, int *b, int dn, int sn, int cas)
{
  int i;
  for (i=0; i<sn; i++)
    b[i]=a[2*i+cas];
  for (i=0; i<dn; i++)
    b[sn+i]=a[(2*i+1-cas)];
}