Commit 73160356 authored by Michael R. Crusoe's avatar Michael R. Crusoe Committed by Michael R. Crusoe

x86 xop: fix some native functions

parent 4ecf271b
......@@ -286,7 +286,7 @@ simde_vpaddlq_u16(simde_uint16x8_t a) {
simde_uint32x4_private r_;
#if defined(SIMDE_X86_XOP_NATIVE)
r_.sse_m128i = _mm_haddd_epu16(a_.sse_m128i);
r_.m128i = _mm_haddd_epu16(a_.m128i);
#elif defined(SIMDE_X86_SSE2_NATIVE)
r_.m128i =
_mm_add_epi32(
......
......@@ -3727,7 +3727,7 @@ simde_mm256_permute2_pd (simde__m256d a, simde__m256d b, simde__m256i c, const i
SIMDE_LCC_REVERT_DEPRECATED_WARNINGS \
}))
#else
#define simde_mm256_permute2_pd(a, b, c, imm8) simde_undeprecated_mm256_permute2_pd((a), (b), (c), (imm8))
#define simde_mm256_permute2_pd(a, b, c, imm8) _mm256_permute2_pd((a), (b), (c), (imm8))
#endif
#endif
#if defined(SIMDE_X86_XOP_ENABLE_NATIVE_ALIASES)
......
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