summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorBruce Forstall <brucefo@microsoft.com>2017-02-06 11:26:34 -0800
committerGitHub <noreply@github.com>2017-02-06 11:26:34 -0800
commitd05009a17e194d50726454f348e93890273e62f5 (patch)
tree6fe09707f0c4be5a73dac415e941e195e3b699ac /tests
parent80c30e7dfbe00ab30bb86ba2c0f883130766643e (diff)
parentcacb79692c4db6c4dded4d8f6a55e7fd8fa11d3a (diff)
downloadcoreclr-d05009a17e194d50726454f348e93890273e62f5.tar.gz
coreclr-d05009a17e194d50726454f348e93890273e62f5.tar.bz2
coreclr-d05009a17e194d50726454f348e93890273e62f5.zip
Merge pull request #8644 from BruceForstall/SimdLongDecomp
Enable SIMD for RyuJIT/x86
Diffstat (limited to 'tests')
-rw-r--r--tests/src/JIT/SIMD/VectorUtil.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/src/JIT/SIMD/VectorUtil.cs b/tests/src/JIT/SIMD/VectorUtil.cs
index 6501aac767..2249ff84e0 100644
--- a/tests/src/JIT/SIMD/VectorUtil.cs
+++ b/tests/src/JIT/SIMD/VectorUtil.cs
@@ -26,7 +26,7 @@ internal partial class VectorTest
}
if (returnVal == false)
{
- Console.WriteLine("CheckValue failed for " + expectedValue + " of type " + typeof(T).ToString());
+ Console.WriteLine("CheckValue failed for type " + typeof(T).ToString() + ". Expected: {0} (0x{0:X}), Got: {1} (0x{1:X})", expectedValue, value);
}
return returnVal;
}