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

int a, c, d;
short b;

void
fn1 ()
{
  int e;
  for (; c; c++)
    {
      for (; a; a++)
        b = (short) a || e;
      e = d;
    }
}