From 12ca712c6b5b3f1346b18848ae229811627e8e7f Mon Sep 17 00:00:00 2001 From: Fei Peng Date: Fri, 29 Mar 2019 19:01:11 -0700 Subject: [PATCH] Fix ARM64 isFullyImplementedIsa --- 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: