Skip to content

Commit

Permalink
merge problem...
Browse files Browse the repository at this point in the history
  • Loading branch information
CarlVerret committed Dec 7, 2021
1 parent a288f30 commit 1b5fd51
Show file tree
Hide file tree
Showing 4 changed files with 202 additions and 178 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1031,7 +1031,7 @@ private static ulong DigitsToUInt64(byte* p, int count)
ulong res = 0;

// parse batches of 8 digits with SWAR
while (end - p >= 8)
while (p <= end - 8)
{
res = (res * 100000000) + ParseEightDigitsUnrolled(p);
p += 8;
Expand Down
Loading

0 comments on commit 1b5fd51

Please sign in to comment.