aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr24059.c
blob: 8a46b4a9af79cf2e9c6a885bcf5e9584387d72a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* { dg-do compile } */
/* { dg-require-effective-target vect_condition } */

struct pred_data
{
  unsigned char codes[((int) 100)];
};

void compute_predicate_codes (char *codes, struct pred_data *p)
{
  int i;
  for (i = 0; i < ((int) 100); i++)
    codes[i] = p->codes[i] ? 2 : 0;
}