aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/vect/pr33373b.c
blob: fc5e6eb249340715d5534f7d4394db4df690e7ac (plain)
1
2
3
4
5
6
7
/* { 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);
}