Commit 9cbc3b01 authored by aqrit's avatar aqrit Committed by Evan Nemerson

sse4.2: re-enable native _mm_cmpgt_epi64

Fixes #701
parent 391b06b1
......@@ -136,7 +136,7 @@ int simde_mm_cmpestrz (simde__m128i a, int la, simde__m128i b, int lb, const int
SIMDE_FUNCTION_ATTRIBUTES
simde__m128i
simde_mm_cmpgt_epi64 (simde__m128i a, simde__m128i b) {
#if defined(SIMDE_X86_SSE4_2_NATIVE) && 0
#if defined(SIMDE_X86_SSE4_2_NATIVE)
return _mm_cmpgt_epi64(a, b);
#elif defined(SIMDE_X86_SSE2_NATIVE)
/* https://stackoverflow.com/a/65175746/501126 */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment