Check interleaved and sequential in debug mode

This commit is contained in:
2024-10-15 17:31:06 -07:00
parent 66e5b033c0
commit 583f2e7612
2 changed files with 10 additions and 1 deletions

View File

@@ -129,7 +129,7 @@ longestCommonPrefix(const uint8_t *ap, const uint8_t *bp, int cl) {
}
int i = 0;
int end;
int end; // GCOVR_EXCL_LINE
// kStride * kUnrollCount at a time
end = cl & ~(kStride * kUnrollFactor - 1);