aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/graphite/pr41562.C
blob: 36b8c275f179b54bc7674a76f441bb95df5dede1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* { dg-do compile } */
/* { dg-options "-O -ftree-loop-distribution -floop-block" } */

typedef struct stSirenEncoder { } *SirenEncoder;

int Siren7_EncodeFrame(SirenEncoder encoder, unsigned char *DataIn, unsigned char *DataOut) {
   int number_of_regions;
   static int absolute_region_power_index[28] = {0};
   static int region_mlt_bit_counts[28] = {0};
   int dwRes = 0;
   int region;
   if (dwRes != 0) return dwRes;
   for(region = 0; region < number_of_regions; region++)
   {
     absolute_region_power_index[region] += 24;
     region_mlt_bit_counts[region] = 0;
   }
}