Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add additional space to store 64-bit hash codes on 32-bit machines
On 32-bit machines, thread local variables are stored in arrays of 32-bit chunks of memory. But now that we use 64-bit hash codes, we were getting the hash counter by concatenating two adjacent elements of the array, giving us unexpected results. We add a new thread local variable to store these extra 32 bits, fixing this issue.
- Loading branch information