summaryrefslogtreecommitdiff
path: root/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs')
-rw-r--r--tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs b/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs
index 4ac435adb7..17afe1c96e 100644
--- a/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs
+++ b/tests/src/JIT/HardwareIntrinsics/General/Vector128_1/GetAndWithLowerAndUpper.Int16.cs
@@ -79,18 +79,18 @@ namespace JIT.HardwareIntrinsics.General
Vector128<Int16> value = Vector128.Create(values[0], values[1], values[2], values[3], values[4], values[5], values[6], values[7]);
object lowerResult = typeof(Vector128<Int16>)
- .GetMethod(nameof(Vector128<Int16>.GetLower), new Type[] { })
+ .GetMethod(nameof(Vector128.GetLower), new Type[] { })
.Invoke(value, new object[] { });
object upperResult = typeof(Vector128<Int16>)
- .GetMethod(nameof(Vector128<Int16>.GetUpper), new Type[] { })
+ .GetMethod(nameof(Vector128.GetUpper), new Type[] { })
.Invoke(value, new object[] { });
ValidateGetResult((Vector64<Int16>)(lowerResult), (Vector64<Int16>)(upperResult), values);
object result = typeof(Vector128<Int16>)
- .GetMethod(nameof(Vector128<Int16>.WithLower), new Type[] { typeof(Vector64<Int16>) })
+ .GetMethod(nameof(Vector128.WithLower), new Type[] { typeof(Vector64<Int16>) })
.Invoke(value, new object[] { upperResult });
result = typeof(Vector128<Int16>)
- .GetMethod(nameof(Vector128<Int16>.WithUpper), new Type[] { typeof(Vector64<Int16>) })
+ .GetMethod(nameof(Vector128.WithUpper), new Type[] { typeof(Vector64<Int16>) })
.Invoke(result, new object[] { lowerResult });
ValidateWithResult((Vector128<Int16>)(result), values);
}