summaryrefslogtreecommitdiff
path: root/src/jit/gentree.cpp
diff options
context:
space:
mode:
authorFei Peng <feipeng.compiler@gmail.com>2019-03-29 14:28:30 -0700
committerTanner Gooding <tagoo@outlook.com>2019-03-29 14:28:30 -0700
commit4a4ba4d379002c8b8e77ef968f510cf0283201d0 (patch)
tree84896b322d12fc6b5b2e97ff720905d20d50186f /src/jit/gentree.cpp
parent4e5a542537ea73c94d3443d9c82b05c744f76758 (diff)
downloadcoreclr-4a4ba4d379002c8b8e77ef968f510cf0283201d0.tar.gz
coreclr-4a4ba4d379002c8b8e77ef968f510cf0283201d0.tar.bz2
coreclr-4a4ba4d379002c8b8e77ef968f510cf0283201d0.zip
Simplify and unify Vector64/128/256 platform-agnostic intrinsic handling (#23028)
* Simplify and unify Vector64/128/256 platform-agnostic intrinsic handling * Removed unsupported ISAs
Diffstat (limited to 'src/jit/gentree.cpp')
-rw-r--r--src/jit/gentree.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jit/gentree.cpp b/src/jit/gentree.cpp
index 93de32a480..69e774cf9b 100644
--- a/src/jit/gentree.cpp
+++ b/src/jit/gentree.cpp
@@ -16446,7 +16446,7 @@ GenTree* Compiler::gtGetSIMDZero(var_types simdType, var_types baseType, CORINFO
// We only return the HWIntrinsicNode if SSE is supported, since it is possible for
// the user to disable the SSE HWIntrinsic support via the COMPlus configuration knobs
// even though the hardware vector types are still available.
- return gtNewSimdHWIntrinsicNode(simdType, NI_Base_Vector128_Zero, baseType, size);
+ return gtNewSimdHWIntrinsicNode(simdType, NI_Vector128_Zero, baseType, size);
}
return nullptr;
case TYP_SIMD32:
@@ -16455,7 +16455,7 @@ GenTree* Compiler::gtGetSIMDZero(var_types simdType, var_types baseType, CORINFO
// We only return the HWIntrinsicNode if AVX is supported, since it is possible for
// the user to disable the AVX HWIntrinsic support via the COMPlus configuration knobs
// even though the hardware vector types are still available.
- return gtNewSimdHWIntrinsicNode(simdType, NI_Base_Vector256_Zero, baseType, size);
+ return gtNewSimdHWIntrinsicNode(simdType, NI_Vector256_Zero, baseType, size);
}
return nullptr;
default: