Skip to content

Commit

Permalink
Removed Vector128 polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
oleg-st committed Sep 26, 2024
1 parent 8bcebe1 commit 7ceab2b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 94 deletions.
54 changes: 0 additions & 54 deletions src/ZstdSharp/Polyfills/Vector128.cs

This file was deleted.

36 changes: 0 additions & 36 deletions src/ZstdSharp/Polyfills/Vector128_1.cs

This file was deleted.

2 changes: 1 addition & 1 deletion src/ZstdSharp/Unsafe/ZstdInternal.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using static ZstdSharp.UnsafeHelper;
using System;
using System.Runtime.InteropServices;
using System.Runtime.CompilerServices;
#if NETCOREAPP3_0_OR_GREATER
using System.Runtime.Intrinsics.X86;
#endif
using System.Runtime.CompilerServices;
#if NET5_0_OR_GREATER
using System.Runtime.Intrinsics.Arm;
#endif
Expand Down
6 changes: 3 additions & 3 deletions src/ZstdSharp/Unsafe/ZstdLazy.cs
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
using static ZstdSharp.UnsafeHelper;
using System.Runtime.CompilerServices;
using System.Runtime.Intrinsics;
using System.Numerics;
using System;
#if NETCOREAPP3_0_OR_GREATER
using System.Runtime.Intrinsics;
using System.Runtime.Intrinsics.X86;
#endif
using System.Numerics;
#if NET5_0_OR_GREATER
using System.Runtime.Intrinsics.Arm;
#endif
using System;

namespace ZstdSharp.Unsafe
{
Expand Down

0 comments on commit 7ceab2b

Please sign in to comment.