Merge pull request #2256 from helloguo/dev

Optimize ZSTD_wildcopy
This commit is contained in:
Nick Terrell
2020-07-29 11:57:49 -07:00
committed by GitHub
+4 -2
View File
@@ -290,8 +290,10 @@ void ZSTD_wildcopy(void* dst, const void* src, ptrdiff_t length, ZSTD_overlap_e
}
while (op < oend);
#else
COPY16(op, ip);
if (op >= oend) return;
ZSTD_copy16(op, ip);
if (16 >= length) return;
op += 16;
ip += 16;
do {
COPY16(op, ip);
COPY16(op, ip);