aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr115959.c
blob: 181d55220182fa3657a88b28b9a873c3a1bb8752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* { dg-do compile } */

int a;
_Bool *b;
void f()
{
  int t = a;
  for (int e = 0; e < 2048; e++)
    {
      if (!b[e])
	t = 0;
    }
  a = t;
}