From 192a53da2f6f14c7e7fd2d21b2a25332912dfdda Mon Sep 17 00:00:00 2001 From: Fei Peng Date: Sat, 30 Mar 2019 07:43:38 -0700 Subject: [PATCH] Fix ARM64 isFullyImplementedIsa (#23590) --- src/jit/hwintrinsicArm64.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jit/hwintrinsicArm64.cpp b/src/jit/hwintrinsicArm64.cpp index 47a2b56a7cf5..602dec14f93c 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: