Skip to content

Commit 9a098ec

Browse files
committed
Add missing using
1 parent ca77dff commit 9a098ec

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/libraries/System.Private.CoreLib/src/System/Text/Ascii.Equality.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using System.Runtime.InteropServices;
88
using System.Runtime.Intrinsics;
99
using System.Runtime.Intrinsics.Arm;
10+
using System.Runtime.Intrinsics.Wasm;
1011
using System.Runtime.Intrinsics.X86;
1112

1213
namespace System.Text
@@ -525,7 +526,7 @@ public static Vector128<ushort> Load128(ref byte ptr)
525526
else if (PackedSimd.IsSupported)
526527
{
527528
Vector128<byte> vec = Vector128.CreateScalarUnsafe(Unsafe.ReadUnaligned<long>(ref ptr)).AsByte();
528-
return PackeSimd.ZeroExtendWideningLower(vec);
529+
return PackedSimd.ZeroExtendWideningLower(vec);
529530
}
530531
else
531532
{

0 commit comments

Comments
 (0)