summaryrefslogtreecommitdiff
path: root/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs
diff options
context:
space:
mode:
authordotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>2019-02-15 23:50:21 -0800
committerTanner Gooding <tagoo@outlook.com>2019-02-15 23:50:21 -0800
commit990dd2c14972f07001ff6021528697df51c8e5e6 (patch)
treeb1e20722a2a3f65fc5a508cc58f667d7859a779d /tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs
parenta4cad5d4d3a7bbb9fa98b8aa3dc8167328065ea7 (diff)
downloadcoreclr-990dd2c14972f07001ff6021528697df51c8e5e6.tar.gz
coreclr-990dd2c14972f07001ff6021528697df51c8e5e6.tar.bz2
coreclr-990dd2c14972f07001ff6021528697df51c8e5e6.zip
[master] Update dependencies from dotnet/corefx (#22595)
* Update dependencies from https://github.com/dotnet/corefx build 20190213.23 This change updates the following dependencies - Microsoft.NETCore.Platforms - 3.0.0-preview4.19113.23 - Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview4.19113.23 * Update dependencies from https://github.com/dotnet/corefx build 20190215.1 This change updates the following dependencies - Microsoft.NETCore.Platforms - 3.0.0-preview4.19115.1 - Microsoft.Private.CoreFx.NETCoreApp - 4.6.0-preview4.19115.1 * Fixing up the tests dependent on the S.R.I.Vector API changes * Regenerating the tests dependent on the S.R.I.Vector API changes * Disabling an outdated CoreFX test.
Diffstat (limited to 'tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs')
-rw-r--r--tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs b/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs
index 8f68621783..707f3e4022 100644
--- a/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs
+++ b/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithElement.Double.1.cs
@@ -121,7 +121,7 @@ namespace JIT.HardwareIntrinsics.General
try
{
object result = typeof(Vector128<Double>)
- .GetMethod(nameof(Vector128<Double>.GetElement), new Type[] { typeof(int) })
+ .GetMethod(nameof(Vector128.GetElement), new Type[] { typeof(int) })
.Invoke(value, new object[] { imm });
ValidateGetResult((Double)(result), values);
}
@@ -146,7 +146,7 @@ namespace JIT.HardwareIntrinsics.General
try
{
object result2 = typeof(Vector128<Double>)
- .GetMethod(nameof(Vector128<Double>.WithElement), new Type[] { typeof(int), typeof(Double) })
+ .GetMethod(nameof(Vector128.WithElement), new Type[] { typeof(int), typeof(Double) })
.Invoke(value, new object[] { imm, insertedValue });
ValidateWithResult((Vector128<Double>)(result2), values, insertedValue);
}