Add support for repcodes

This commit is contained in:
senhuang42
2020-11-16 10:49:16 -05:00
parent 3e930fd044
commit 89f3848310
2 changed files with 8 additions and 1 deletions
+3
View File
@@ -497,6 +497,9 @@ static void ZSTD_safecopyLiterals(BYTE* op, BYTE const* ip, BYTE const* const ie
HINT_INLINE UNUSED_ATTR
void ZSTD_storeSeq(seqStore_t* seqStorePtr, size_t litLength, const BYTE* literals, const BYTE* litLimit, U32 offCode, size_t mlBase)
{
if (offCode <= 3) {
printf("of: %u ml: %u ll: %u\n", offCode, mlBase, litLength);
}
BYTE const* const litLimit_w = litLimit - WILDCOPY_OVERLENGTH;
BYTE const* const litEnd = literals + litLength;
#if defined(DEBUGLEVEL) && (DEBUGLEVEL >= 6)