aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr24059.c
blob: 0849d15c95f3ce41a8bc066e9f9ed8e06efcbf64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* { 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;
}

/* { dg-final { cleanup-tree-dump "vect" } } */