summaryrefslogtreecommitdiff
path: root/tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs')
-rw-r--r--tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs b/tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs
index a15a8fff2d..f500a72349 100644
--- a/tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs
+++ b/tests/src/JIT/HardwareIntrinsics/General/Vector256_1/GetAndWithElement.Int32.7.cs
@@ -121,7 +121,7 @@ namespace JIT.HardwareIntrinsics.General
try
{
object result = typeof(Vector256<Int32>)
- .GetMethod(nameof(Vector256<Int32>.GetElement), new Type[] { typeof(int) })
+ .GetMethod(nameof(Vector256.GetElement), new Type[] { typeof(int) })
.Invoke(value, new object[] { imm });
ValidateGetResult((Int32)(result), values);
}
@@ -146,7 +146,7 @@ namespace JIT.HardwareIntrinsics.General
try
{
object result2 = typeof(Vector256<Int32>)
- .GetMethod(nameof(Vector256<Int32>.WithElement), new Type[] { typeof(int), typeof(Int32) })
+ .GetMethod(nameof(Vector256.WithElement), new Type[] { typeof(int), typeof(Int32) })
.Invoke(value, new object[] { imm, insertedValue });
ValidateWithResult((Vector256<Int32>)(result2), values, insertedValue);
}