aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/vect/pr33373b.c
blob: c294a385c263be16f0e41a86e14cd65ccf33748a (plain)
1
2
3
4
5
6
7
8
/* { dg-do compile } */
void f (unsigned int *d, unsigned int *s, int w)
{
  int i;
  for (i = 0; i < w; ++i)
    d [i] = s [i] * (unsigned short) (~d [i] >> 24);
}
/* { dg-final { cleanup-tree-dump "vect" } } */