Fix performance regression on aarch64 with clang

This commit is contained in:
Nick Terrell
2020-01-23 17:31:14 -08:00
parent 2f31050a3f
commit cb2abc3dbe
2 changed files with 7 additions and 6 deletions
+1 -1
View File
@@ -580,7 +580,7 @@ typedef struct {
* Precondition: *ip <= *op
* Postcondition: *op - *op >= 8
*/
static void ZSTD_overlapCopy8(BYTE** op, BYTE const** ip, size_t offset) {
HINT_INLINE void ZSTD_overlapCopy8(BYTE** op, BYTE const** ip, size_t offset) {
assert(*ip <= *op);
if (offset < 8) {
/* close range match, overlap */