1 /* A very trivial test for undefinedness propagation through
2 saturating narrowing. Obviously need a much more thorough test.
6 #include "../../memcheck.h"
9 unsigned char data
[32], vbits
[32];
11 ("movdqu (%0), %%xmm0 \n"
12 "packuswb %%xmm0, %%xmm0 \n"
13 "movdqu %%xmm0, 16(%0) \n"
18 VALGRIND_GET_VBITS( data
, vbits
, 32 );
19 assert(res
== 1); /* 1 == success */
23 printf("%02x ", vbits
[i
*16+j
]);