From 5abf75e4f8b8e06436794633c9c2c8817295d24e Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Wed, 31 Jan 2018 20:13:27 -0800 Subject: [PATCH] Rename ConvertScalarToVector128UInt32Scalar to ConvertScalarToVector128UInt32 --- .../src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs | 2 +- src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs index afa6a53..7e9eb89 100644 --- a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs +++ b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs @@ -568,7 +568,7 @@ namespace System.Runtime.Intrinsics.X86 /// __m128i _mm_cvtsi32_si128 (int a) /// MOVD xmm, reg/m32 /// - public static Vector128 ConvertScalarToVector128UInt32Scalar(uint value) { throw new PlatformNotSupportedException(); } + public static Vector128 ConvertScalarToVector128UInt32(uint value) { throw new PlatformNotSupportedException(); } /// /// __m128i _mm_cvtsi64_si128 (__int64 a) /// MOVQ xmm, reg/m64 diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs index 8885dee..f43d96e 100644 --- a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs +++ b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs @@ -568,7 +568,7 @@ namespace System.Runtime.Intrinsics.X86 /// __m128i _mm_cvtsi32_si128 (int a) /// MOVD xmm, reg/m32 /// - public static Vector128 ConvertScalarToVector128UInt32Scalar(uint value) => ConvertScalarToVector128UInt32Scalar(value); + public static Vector128 ConvertScalarToVector128UInt32(uint value) => ConvertScalarToVector128UInt32(value); /// /// __m128i _mm_cvtsi64_si128 (__int64 a) /// MOVQ xmm, reg/m64 -- 2.7.4