From 1a6bad1534b1a3fb6054e094f3ead1d4e0273be2 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Thu, 18 Jan 2018 22:31:02 -0800 Subject: [PATCH] Fix the naming of the arguments for LoadHigh and LoadLow --- .../src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs | 4 ++-- src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs | 4 ++-- .../src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs | 4 ++-- src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs index 1e48bdc..9eaf1b3 100644 --- a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs +++ b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs @@ -274,12 +274,12 @@ namespace System.Runtime.Intrinsics.X86 /// /// __m128 _mm_loadh_pi (__m128 a, __m64 const* mem_addr) /// - public static unsafe Vector128 LoadHigh(Vector128 value, float* address) { throw new PlatformNotSupportedException(); } + public static unsafe Vector128 LoadHigh(Vector128 lower, float* address) { throw new PlatformNotSupportedException(); } /// /// __m128 _mm_loadh_pi (__m128 a, __m64 const* mem_addr) /// - public static unsafe Vector128 LoadLow(Vector128 value, float* address) { throw new PlatformNotSupportedException(); } + public static unsafe Vector128 LoadLow(Vector128 upper, float* address) { throw new PlatformNotSupportedException(); } /// /// __m128 _mm_max_ps (__m128 a, __m128 b) diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs index 9967ff1..e1add8d 100644 --- a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs +++ b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs @@ -274,12 +274,12 @@ namespace System.Runtime.Intrinsics.X86 /// /// __m128 _mm_loadh_pi (__m128 a, __m64 const* mem_addr) /// - public static unsafe Vector128 LoadHigh(Vector128 value, float* address) => LoadHigh(value, address); + public static unsafe Vector128 LoadHigh(Vector128 lower, float* address) => LoadHigh(lower, address); /// /// __m128 _mm_loadl_pi (__m128 a, __m64 const* mem_addr) /// - public static unsafe Vector128 LoadLow(Vector128 value, float* address) => LoadLow(value, address); + public static unsafe Vector128 LoadLow(Vector128 upper, float* address) => LoadLow(upper, address); /// /// __m128 _mm_max_ps (__m128 a, __m128 b) 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 57eaffe..6c3c08f 100644 --- a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs +++ b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs @@ -600,12 +600,12 @@ namespace System.Runtime.Intrinsics.X86 /// /// __m128d _mm_loadh_pd (__m128d a, double const* mem_addr) /// - public static unsafe Vector128 LoadHigh(Vector128 value, double* address) { throw new PlatformNotSupportedException(); } + public static unsafe Vector128 LoadHigh(Vector128 lower, double* address) { throw new PlatformNotSupportedException(); } /// /// __m128d _mm_loadl_pd (__m128d a, double const* mem_addr) /// - public static unsafe Vector128 LoadLow(Vector128 value, double* address) { throw new PlatformNotSupportedException(); } + public static unsafe Vector128 LoadLow(Vector128 upper, double* address) { throw new PlatformNotSupportedException(); } /// /// __m128i _mm_loadl_epi64 (__m128i const* mem_addr) diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs index 95b64d2..28744f4 100644 --- a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs +++ b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs @@ -601,12 +601,12 @@ namespace System.Runtime.Intrinsics.X86 /// /// __m128d _mm_loadh_pd (__m128d a, double const* mem_addr) /// - public static unsafe Vector128 LoadHigh(Vector128 value, double* address) => LoadHigh(value, address); + public static unsafe Vector128 LoadHigh(Vector128 lower, double* address) => LoadHigh(lower, address); /// /// __m128d _mm_loadl_pd (__m128d a, double const* mem_addr) /// - public static unsafe Vector128 LoadLow(Vector128 value, double* address) => LoadLow(value, address); + public static unsafe Vector128 LoadLow(Vector128 upper, double* address) => LoadLow(upper, address); /// /// __m128i _mm_loadl_epi64 (__m128i const* mem_addr) -- 2.7.4