summaryrefslogtreecommitdiff
path: root/src/jit
diff options
context:
space:
mode:
authorFei Peng <feipeng.compiler@gmail.com>2019-03-30 07:43:38 -0700
committerCarol Eidt <carol.eidt@microsoft.com>2019-03-30 07:43:38 -0700
commit192a53da2f6f14c7e7fd2d21b2a25332912dfdda (patch)
tree0557724122974381a17f3b74e48d7082336e38d0 /src/jit
parentb23ad3afc2276945c5c5ab60ecda32d6e0c821a3 (diff)
downloadcoreclr-192a53da2f6f14c7e7fd2d21b2a25332912dfdda.tar.gz
coreclr-192a53da2f6f14c7e7fd2d21b2a25332912dfdda.tar.bz2
coreclr-192a53da2f6f14c7e7fd2d21b2a25332912dfdda.zip
Fix ARM64 isFullyImplementedIsa (#23590)
Diffstat (limited to 'src/jit')
-rw-r--r--src/jit/hwintrinsicArm64.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/jit/hwintrinsicArm64.cpp b/src/jit/hwintrinsicArm64.cpp
index 47a2b56a7c..602dec14f9 100644
--- a/src/jit/hwintrinsicArm64.cpp
+++ b/src/jit/hwintrinsicArm64.cpp
@@ -157,6 +157,8 @@ bool HWIntrinsicInfo::isFullyImplementedIsa(InstructionSet isa)
case InstructionSet_Simd:
case InstructionSet_Sha1:
case InstructionSet_Sha256:
+ case InstructionSet_Vector64:
+ case InstructionSet_Vector128:
return true;
default:
@@ -185,6 +187,8 @@ bool HWIntrinsicInfo::isScalarIsa(InstructionSet isa)
case InstructionSet_Simd:
case InstructionSet_Sha1:
case InstructionSet_Sha256:
+ case InstructionSet_Vector64:
+ case InstructionSet_Vector128:
return false;
default: