OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / vect / pr33373b.c
1 /* { dg-do compile } */
2 void f (unsigned int *d, unsigned int *s, int w)
3 {
4   int i;
5   for (i = 0; i < w; ++i)
6     d [i] = s [i] * (unsigned short) (~d [i] >> 24);
7 }
8 /* { dg-final { cleanup-tree-dump "vect" } } */