Skip to content

Commit

Permalink
x86 xop: fix some native functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-c committed Mar 25, 2024
1 parent 4379740 commit a2893d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion simde/arm/neon/paddl.h
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion simde/x86/xop.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a2893d8

Please sign in to comment.