What is the proper way to convert an __int64 value to an __m64 value for use with SSE?
| ||||
|
feedback
|
|
With gcc you can just use
Note that not all compilers have
which suggests that you could probably just use a cast if you prefer, e.g.
Failing that, if you're stuck with an overly picky compiler such as Visual C/C++, as a last resort you can just use a union and implement your own intrinsic:
Note that strictly speaking this is UB, since we are writing to one variant of a union and reading from another, but it should work in this instance. | |||||||||||||||
feedback
|