Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Always set InstructionSet_ArmBase in PAL_GetJitCpuCapabilityFlags #34107

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/coreclr/src/pal/src/misc/jitsupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ PAL_GetJitCpuCapabilityFlags(CORJIT_FLAGS *flags)
// From a single binary distribution perspective, compiling with latest kernel asm/hwcap.h should
// include all published flags. Given flags are merged to kernel and published before silicon is
// available, using the latest kernel for release should be sufficient.
CPUCompileFlags.Set(InstructionSet_ArmBase);
#ifdef HWCAP_AES
if (hwCap & HWCAP_AES)
CPUCompileFlags.Set(InstructionSet_Aes);
Expand Down