PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr50482.c
blob64c2686bd8664b953b223cd2d612e6ca8461a554
1 /* { dg-do compile } */
2 /* { dg-options "-O3 -msse4" } */
4 void
5 test (int code, unsigned int * image, int * colors)
7 int i;
9 for (i = 0; i < code; ++i)
10 image[i] = (colors[i] < 0 ? ~(unsigned int) 0 : colors[i]);