cfe-users Digest, Vol 63, Issue 2

A hex value is unsigned by definition, so attaching "LL" to the end won't
work. The prototype of _mm_add_epi32 (a.o.) has the ints as signed. So,
the answer is to just c-cast the hex values to long long (AFAICS), or
suppress the warning.

degski