(root)/
gcc-13.2.0/
gcc/
testsuite/
g++.dg/
vect/
pr71483.cc
/* { dg-do compile } */
int b, c, d;
short *e;
void fn1() {
  for (; b; b--) {
    d = *e >> 2;
    *e++ = d;
    c = *e;
    *e++ = d;
  }
}