Skip to content

Commit

Permalink
Fixed variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
bbartels committed Jun 17, 2020
1 parent 10417a3 commit 140c2ce
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1669,8 +1669,8 @@ private void MakeSeparatorListVectorized(ref ValueListBuilder<int> sepListBuilde

for (; i < cond; i += Vector256<ushort>.Count)
{
ref char ri = ref Unsafe.Add(ref c0, i);
Vector256<ushort> charVector = Unsafe.As<char, Vector256<ushort>>(ref ri);
ref char ci = ref Unsafe.Add(ref c0, i);
Vector256<ushort> charVector = Unsafe.As<char, Vector256<ushort>>(ref ci);
Vector256<ushort> cmp = Avx2.CompareEqual(charVector, v1);

if (v2 is Vector256<ushort> vecSep2)
Expand Down

0 comments on commit 140c2ce

Please sign in to comment.