summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJacek Blaszczynski <biosciencenow@outlook.com>2018-03-07 16:58:28 +0100
committerJacek Blaszczynski <biosciencenow@outlook.com>2018-03-14 03:31:53 +0100
commit71cccea772abbcf4a78124ab56962c18fc717c0e (patch)
treeead4b12b5f7d3cb2b4006b3cef90dc6d357db8fe /tests
parentc3c2855b25ab6dfaa3a5fd7f66a59cec4eb6fd24 (diff)
downloadcoreclr-71cccea772abbcf4a78124ab56962c18fc717c0e.tar.gz
coreclr-71cccea772abbcf4a78124ab56962c18fc717c0e.tar.bz2
coreclr-71cccea772abbcf4a78124ab56962c18fc717c0e.zip
Convert implementation of SetAllVector128 SSE HW intrinsic to managed
Diffstat (limited to 'tests')
-rw-r--r--tests/src/JIT/HardwareIntrinsics/X86/Sse2/SetAllVector128.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/JIT/HardwareIntrinsics/X86/Sse2/SetAllVector128.cs b/tests/src/JIT/HardwareIntrinsics/X86/Sse2/SetAllVector128.cs
index adad01f57f..d379720ddf 100644
--- a/tests/src/JIT/HardwareIntrinsics/X86/Sse2/SetAllVector128.cs
+++ b/tests/src/JIT/HardwareIntrinsics/X86/Sse2/SetAllVector128.cs
@@ -56,7 +56,7 @@ namespace IntelHardwareIntrinsicTest
{
try
{
- var vd = Sse2.Sse2.SetAllVector128((long)0xffffl);
+ var vd = Sse2.SetAllVector128((long)0xffffl);
testResult = Fail;
Console.WriteLine($"{nameof(Sse2)}.{nameof(Sse2.SetAllVector128)} failed for long: expected PlatformNotSupportedException exception.");
}
@@ -67,7 +67,7 @@ namespace IntelHardwareIntrinsicTest
try
{
- var vd = Sse2.Sse2.SetAllVector128((ulong)0xfffful);
+ var vd = Sse2.SetAllVector128((ulong)0xfffful);
testResult = Fail;
Console.WriteLine($"{nameof(Sse2)}.{nameof(Sse2.SetAllVector128)} failed for ulong: expected PlatformNotSupportedException exception.");
}