summaryrefslogtreecommitdiff
path: root/tests/src/JIT
diff options
context:
space:
mode:
authorCarol Eidt <carol.eidt@microsoft.com>2018-11-07 07:06:40 -0800
committerGitHub <noreply@github.com>2018-11-07 07:06:40 -0800
commitf8ba00e0446e2a8b2f0e969aea249bf886e8ff5e (patch)
tree923d94ed955a56214c6f7ebb0df64bae75d1b485 /tests/src/JIT
parent18fe41da05f9f9e3ca1aea0e617d94397aca3c99 (diff)
parent8d34db07ce56536882d4dca97a7e49b45fb5f362 (diff)
downloadcoreclr-f8ba00e0446e2a8b2f0e969aea249bf886e8ff5e.tar.gz
coreclr-f8ba00e0446e2a8b2f0e969aea249bf886e8ff5e.tar.bz2
coreclr-f8ba00e0446e2a8b2f0e969aea249bf886e8ff5e.zip
Merge pull request #20787 from CarolEidt/Arm64IntrinsicsWindows
Add Windows support for Arm64 HW Intrinsics
Diffstat (limited to 'tests/src/JIT')
-rw-r--r--tests/src/JIT/HardwareIntrinsics/Arm64/Crypto.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/tests/src/JIT/HardwareIntrinsics/Arm64/Crypto.cs b/tests/src/JIT/HardwareIntrinsics/Arm64/Crypto.cs
index f68f7491df..fded5067e6 100644
--- a/tests/src/JIT/HardwareIntrinsics/Arm64/Crypto.cs
+++ b/tests/src/JIT/HardwareIntrinsics/Arm64/Crypto.cs
@@ -195,12 +195,11 @@ namespace Arm64intrisicsTest
Func<TVectorType, TVectorType, TVectorType, TVectorTypeReturn> cryptoOp)
where TVectorType : new()
{
- TVectorType v = new TVectorType();
-
bool notSupported = false;
try
{
+ TVectorType v = new TVectorType();
cryptoOp(v,v,v);
}
catch (PlatformNotSupportedException) // TODO-Fixme check for Type not supported exception
@@ -266,8 +265,6 @@ namespace Arm64intrisicsTest
testCryptoOp<uint, Vector128<uint>, uint, Vector128<uint> >(name, (x, y, z) => Sha1.SchedulePart2(x, y), sha1su2Res);
if(Sha1.FixedRotate(100) != 25)
throw new Exception("Sha1 FixedRotate failed.\n");
-
-
}
else
{