_mm_stream_si64

Store 64-bit integer a into memory using a non-temporal hint to minimize cache pollution. If the cache line containing address mem_addr is already in the cache, the cache will be updated. Note: non-temporal stores should be followed by _mm_sfence() for reader threads.

nothrow @nogc pure @trusted
void
_mm_stream_si64
(
long* mem_addr
,
long a
)

Meta