Fix the naming of the arguments for LoadHigh and LoadLow
authorTanner Gooding <tagoo@outlook.com>
Fri, 19 Jan 2018 06:31:02 +0000 (22:31 -0800)
committerTanner Gooding <tagoo@outlook.com>
Mon, 29 Jan 2018 23:35:26 +0000 (15:35 -0800)
src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs
src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs
src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs
src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs

index 1e48bdc..9eaf1b3 100644 (file)
@@ -274,12 +274,12 @@ namespace System.Runtime.Intrinsics.X86
         /// <summary>
         /// __m128 _mm_loadh_pi (__m128 a, __m64 const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<float> LoadHigh(Vector128<float> value, float* address) { throw new PlatformNotSupportedException(); }
+        public static unsafe Vector128<float> LoadHigh(Vector128<float> lower, float* address) { throw new PlatformNotSupportedException(); }
 
         /// <summary>
         /// __m128 _mm_loadh_pi (__m128 a, __m64 const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<float> LoadLow(Vector128<float> value, float* address) { throw new PlatformNotSupportedException(); }
+        public static unsafe Vector128<float> LoadLow(Vector128<float> upper, float* address) { throw new PlatformNotSupportedException(); }
 
         /// <summary>
         /// __m128 _mm_max_ps (__m128 a,  __m128 b)
index 9967ff1..e1add8d 100644 (file)
@@ -274,12 +274,12 @@ namespace System.Runtime.Intrinsics.X86
         /// <summary>
         /// __m128 _mm_loadh_pi (__m128 a, __m64 const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<float> LoadHigh(Vector128<float> value, float* address) => LoadHigh(value, address);
+        public static unsafe Vector128<float> LoadHigh(Vector128<float> lower, float* address) => LoadHigh(lower, address);
 
         /// <summary>
         /// __m128 _mm_loadl_pi (__m128 a, __m64 const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<float> LoadLow(Vector128<float> value, float* address) => LoadLow(value, address);
+        public static unsafe Vector128<float> LoadLow(Vector128<float> upper, float* address) => LoadLow(upper, address);
 
         /// <summary>
         /// __m128 _mm_max_ps (__m128 a,  __m128 b)
index 57eaffe..6c3c08f 100644 (file)
@@ -600,12 +600,12 @@ namespace System.Runtime.Intrinsics.X86
         /// <summary>
         /// __m128d _mm_loadh_pd (__m128d a, double const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<double> LoadHigh(Vector128<double> value, double* address) { throw new PlatformNotSupportedException(); }
+        public static unsafe Vector128<double> LoadHigh(Vector128<double> lower, double* address) { throw new PlatformNotSupportedException(); }
 
         /// <summary>
         /// __m128d _mm_loadl_pd (__m128d a, double const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<double> LoadLow(Vector128<double> value, double* address) { throw new PlatformNotSupportedException(); }
+        public static unsafe Vector128<double> LoadLow(Vector128<double> upper, double* address) { throw new PlatformNotSupportedException(); }
 
         /// <summary>
         /// __m128i _mm_loadl_epi64 (__m128i const* mem_addr)
index 95b64d2..28744f4 100644 (file)
@@ -601,12 +601,12 @@ namespace System.Runtime.Intrinsics.X86
         /// <summary>
         /// __m128d _mm_loadh_pd (__m128d a, double const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<double> LoadHigh(Vector128<double> value, double* address) => LoadHigh(value, address);
+        public static unsafe Vector128<double> LoadHigh(Vector128<double> lower, double* address) => LoadHigh(lower, address);
 
         /// <summary>
         /// __m128d _mm_loadl_pd (__m128d a, double const* mem_addr)
         /// </summary>
-        public static unsafe Vector128<double> LoadLow(Vector128<double> value, double* address) => LoadLow(value, address);
+        public static unsafe Vector128<double> LoadLow(Vector128<double> upper, double* address) => LoadLow(upper, address);
 
         /// <summary>
         /// __m128i _mm_loadl_epi64 (__m128i const* mem_addr)