annotate gcc/testsuite/g++.dg/graphite/pr41562.C @ 158:494b0b89df80 default tip

...
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 18:13:55 +0900
parents 84e7813d76e9
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* { dg-do compile } */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 /* { dg-options "-O -ftree-loop-distribution -floop-block -Wno-return-type" } */
111
kono
parents:
diff changeset
3
kono
parents:
diff changeset
4 typedef struct stSirenEncoder { } *SirenEncoder;
kono
parents:
diff changeset
5
kono
parents:
diff changeset
6 int Siren7_EncodeFrame(SirenEncoder encoder, unsigned char *DataIn, unsigned char *DataOut) {
kono
parents:
diff changeset
7 int number_of_regions;
kono
parents:
diff changeset
8 static int absolute_region_power_index[28] = {0};
kono
parents:
diff changeset
9 static int region_mlt_bit_counts[28] = {0};
kono
parents:
diff changeset
10 int dwRes = 0;
kono
parents:
diff changeset
11 int region;
kono
parents:
diff changeset
12 if (dwRes != 0) return dwRes;
kono
parents:
diff changeset
13 for(region = 0; region < number_of_regions; region++)
kono
parents:
diff changeset
14 {
kono
parents:
diff changeset
15 absolute_region_power_index[region] += 24;
kono
parents:
diff changeset
16 region_mlt_bit_counts[region] = 0;
kono
parents:
diff changeset
17 }
kono
parents:
diff changeset
18 }