summaryrefslogtreecommitdiff
path: root/src/jit/hwintrinsiccodegenxarch.cpp
diff options
context:
space:
mode:
authordotnet-maestro-bot <dotnet-maestro-bot@microsoft.com>2018-02-02 11:39:31 -0600
committerJan Kotas <jkotas@microsoft.com>2018-02-02 09:39:31 -0800
commit8a237d4036b0182cb61db829afc83beed835db75 (patch)
treeb57a0f0d138c51551d10e9a89d36cfbb4860b84b /src/jit/hwintrinsiccodegenxarch.cpp
parent97874c9d8ae02d69e8f3fa9a1d55c3a567d5cccc (diff)
downloadcoreclr-8a237d4036b0182cb61db829afc83beed835db75.tar.gz
coreclr-8a237d4036b0182cb61db829afc83beed835db75.tar.bz2
coreclr-8a237d4036b0182cb61db829afc83beed835db75.zip
Update CoreClr, CoreFx to preview2-26202-06, preview2-26202-01, respectively (master) (#16169)
* Update CoreClr, CoreFx to preview2-26202-06, preview2-26202-01, respectively * Re-enable and fix the Sse hwintrinsic tests that had API name changes.
Diffstat (limited to 'src/jit/hwintrinsiccodegenxarch.cpp')
-rw-r--r--src/jit/hwintrinsiccodegenxarch.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/hwintrinsiccodegenxarch.cpp b/src/jit/hwintrinsiccodegenxarch.cpp
index e2b996274c..e3e703e83d 100644
--- a/src/jit/hwintrinsiccodegenxarch.cpp
+++ b/src/jit/hwintrinsiccodegenxarch.cpp
@@ -439,7 +439,7 @@ void CodeGen::genSSEIntrinsic(GenTreeHWIntrinsic* node)
switch (intrinsicID)
{
- case NI_SSE_ConvertToVector128SingleScalar:
+ case NI_SSE_ConvertScalarToVector128Single:
{
assert(node->TypeGet() == TYP_SIMD16);
assert(node->gtSIMDBaseType == TYP_FLOAT);
@@ -550,7 +550,7 @@ void CodeGen::genSSEIntrinsic(GenTreeHWIntrinsic* node)
break;
}
- case NI_SSE_SetScalar:
+ case NI_SSE_SetScalarVector128:
{
assert(baseType == TYP_FLOAT);
assert(op2 == nullptr);