Skip to content
This repository was archived by the owner on Jan 23, 2023. It is now read-only.

Commit 2bb0fed

Browse files
FeiPengInteljkotas
authored andcommitted
fix corefx/#26230 (#15792)
1 parent 064136c commit 2bb0fed

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/mscorlib/src/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1177,6 +1177,11 @@ public static class Avx2
11771177
/// __m256i _mm256_srav_epi32 (__m256i a, __m256i count)
11781178
/// </summary>
11791179
public static Vector256<int> ShiftRightArithmeticVariable(Vector256<int> value, Vector256<uint> count) { throw new PlatformNotSupportedException(); }
1180+
1181+
/// <summary>
1182+
/// __m128i _mm_srav_epi32 (__m128i a, __m128i count)
1183+
/// </summary>
1184+
public static Vector128<int> ShiftRightArithmeticVariable(Vector128<int> value, Vector128<uint> count) { throw new PlatformNotSupportedException(); }
11801185

11811186
/// <summary>
11821187
/// __m256i _mm256_srl_epi16 (__m256i a, __m128i count)

0 commit comments

Comments
 (0)