Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Fix ARM64 isFullyImplementedIsa (#23590)
Browse files Browse the repository at this point in the history
  • Loading branch information
fiigii authored and CarolEidt committed Mar 30, 2019
1 parent b23ad3a commit 192a53d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/jit/hwintrinsicArm64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 192a53d

Please sign in to comment.