Skip to content

Commit

Permalink
Debugging: try unconditionally enabling RDM and DP
Browse files Browse the repository at this point in the history
  • Loading branch information
imhameed committed Jun 22, 2021
1 parent a11806f commit af60ff0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/mono/mono/mini/mini-llvm.c
Original file line number Diff line number Diff line change
Expand Up @@ -13604,8 +13604,12 @@ MonoCPUFeatures mono_llvm_get_cpu_features (void)
{ "inited", MONO_CPU_INITED},
#endif
};
if (!cpu_features)
if (!cpu_features) {
cpu_features = MONO_CPU_INITED | (MonoCPUFeatures)mono_llvm_check_cpu_features (flags_map, G_N_ELEMENTS (flags_map));
#if defined(TARGET_ARM64)
cpu_features |= MONO_CPU_ARM64_RDM | MONO_CPU_ARM64_DP;
#endif
}

return cpu_features;
}

0 comments on commit af60ff0

Please sign in to comment.