Skip to content

Commit 1dbc2e0

Browse files
authored
Merge pull request #4414 from arpadpanyik-arm/copy8
AArch64: Use better block COPY8
2 parents 3c3b827 + 1e9d200 commit 1dbc2e0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/common/zstd_internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ static UNUSED_ATTR const U32 OF_defaultNormLog = OF_DEFAULTNORMLOG;
168168
* Shared functions to include for inlining
169169
*********************************************/
170170
static void ZSTD_copy8(void* dst, const void* src) {
171-
#if defined(ZSTD_ARCH_ARM_NEON)
171+
#if defined(ZSTD_ARCH_ARM_NEON) && !defined(__aarch64__)
172172
vst1_u8((uint8_t*)dst, vld1_u8((const uint8_t*)src));
173173
#else
174174
ZSTD_memcpy(dst, src, 8);

0 commit comments

Comments
 (0)