From d089cf88395292e892246a4eb57779db6305792b Mon Sep 17 00:00:00 2001 From: Jan Kotas Date: Wed, 10 Oct 2018 17:25:43 -0700 Subject: [PATCH] Fix build breaks Signed-off-by: dotnet-bot --- .../System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs b/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs index a2dd4ed..c45faa5 100644 --- a/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs +++ b/src/System.Private.CoreLib/shared/System/Runtime/Intrinsics/X86/Avx2.PlatformNotSupported.cs @@ -1207,7 +1207,7 @@ namespace System.Runtime.Intrinsics.X86 /// __m256i _mm256_inserti128_si256 (__m256i a, __m128i b, const int imm8) /// VINSERTI128 ymm, ymm, xmm, imm8 /// - public static Vector256 InsertVector128(Vector256 value, Vector128 data, byte index) { throw new PlatformNotSupportedException(); } + public new static Vector256 InsertVector128(Vector256 value, Vector128 data, byte index) { throw new PlatformNotSupportedException(); } /// /// __m256i _mm256_inserti128_si256 (__m256i a, __m128i b, const int imm8) /// VINSERTI128 ymm, ymm, m128, imm8 @@ -1218,7 +1218,7 @@ namespace System.Runtime.Intrinsics.X86 /// __m256i _mm256_inserti128_si256 (__m256i a, __m128i b, const int imm8) /// VINSERTI128 ymm, ymm, xmm, imm8 /// - public static Vector256 InsertVector128(Vector256 value, Vector128 data, byte index) { throw new PlatformNotSupportedException(); } + public new static Vector256 InsertVector128(Vector256 value, Vector128 data, byte index) { throw new PlatformNotSupportedException(); } /// /// __m256i _mm256_inserti128_si256 (__m256i a, __m128i b, const int imm8) /// VINSERTI128 ymm, ymm, m128, imm8 @@ -1229,7 +1229,7 @@ namespace System.Runtime.Intrinsics.X86 /// __m256i _mm256_inserti128_si256 (__m256i a, __m128i b, const int imm8) /// VINSERTI128 ymm, ymm, xmm, imm8 /// - public static Vector256 InsertVector128(Vector256 value, Vector128 data, byte index) { throw new PlatformNotSupportedException(); } + public new static Vector256 InsertVector128(Vector256 value, Vector128 data, byte index) { throw new PlatformNotSupportedException(); } /// /// __m256i _mm256_inserti128_si256 (__m256i a, __m128i b, const int imm8) /// VINSERTI128 ymm, ymm, m128, imm8 -- 2.7.4