Skip to content

Commit

Permalink
Update remaining X64 usage in Crc32 X86.
Browse files Browse the repository at this point in the history
  • Loading branch information
koculu committed Sep 13, 2023
1 parent dbf6fa5 commit 93a4cfd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ZoneTree/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<Authors>Ahmed Yasin Koculu</Authors>
<PackageId>ZoneTree</PackageId>
<Title>ZoneTree</Title>
<ProductVersion>1.6.8.0</ProductVersion>
<Version>1.6.8.0</Version>
<ProductVersion>1.6.9.0</ProductVersion>
<Version>1.6.9.0</Version>
<Authors>Ahmed Yasin Koculu</Authors>
<AssemblyTitle>ZoneTree</AssemblyTitle>
<Description>ZoneTree is a persistent, high-performance, transactional, ACID-compliant ordered key-value database for NET. It can operate in memory or on local/cloud storage.</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/ZoneTree/WAL/Crc32Computer_SSE42_X86.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public static uint Compute(uint crc, byte[] data)
var len = data.Length;
while (len >= 4)
{
crc = (uint)Sse42.X64.Crc32(crc, BitConverter.ToUInt32(data, off));
crc = (uint)Sse42.Crc32(crc, BitConverter.ToUInt32(data, off));
off += 4;
len -= 4;
}
Expand Down

0 comments on commit 93a4cfd

Please sign in to comment.