summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTanner Gooding <tagoo@outlook.com>2018-01-18 22:31:02 -0800
committerTanner Gooding <tagoo@outlook.com>2018-01-29 15:35:26 -0800
commit1a6bad1534b1a3fb6054e094f3ead1d4e0273be2 (patch)
treee11d428ec8e3a0e910a651033ec593f3c6b68318
parentdb515492a0b7a6211c765e41b9747f15066a8b5f (diff)
downloadcoreclr-1a6bad1534b1a3fb6054e094f3ead1d4e0273be2.tar.gz
coreclr-1a6bad1534b1a3fb6054e094f3ead1d4e0273be2.tar.bz2
coreclr-1a6bad1534b1a3fb6054e094f3ead1d4e0273be2.zip
Fix the naming of the arguments for LoadHigh and LoadLow
-rw-r--r--src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.PlatformNotSupported.cs4
-rw-r--r--src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs4
-rw-r--r--src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.PlatformNotSupported.cs4
-rw-r--r--src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs4
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 1e48bdce50..9eaf1b33dd 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
/// <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)
diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse.cs
index 9967ff1025..e1add8dc26 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
/// <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)
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 57eaffef38..6c3c08f9f9 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
/// <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)
diff --git a/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs b/src/mscorlib/src/System/Runtime/Intrinsics/X86/Sse2.cs
index 95b64d269d..28744f49b4 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
/// <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)