Skip to content

Commit

Permalink
Merge pull request #5159 from knn-k/aarch64defaultOpt
Browse files Browse the repository at this point in the history
AArch64: Change the default JIT option
  • Loading branch information
0xdaryl authored May 7, 2020
2 parents 3415e2e + b91302e commit c567117
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/control/OMROptions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3057,7 +3057,7 @@ void OMR::Options::setOptionInAllOptionSets(uint32_t mask, bool b)
char *
OMR::Options::getDefaultOptions()
{
if (TR::Compiler->target.cpu.isX86() || TR::Compiler->target.cpu.isPower() || TR::Compiler->target.cpu.isARM())
if (TR::Compiler->target.cpu.isX86() || TR::Compiler->target.cpu.isPower() || TR::Compiler->target.cpu.isARM() || TR::Compiler->target.cpu.isARM64())
return (char *) ("samplingFrequency=2");

if (TR::Compiler->target.cpu.isZ())
Expand Down

0 comments on commit c567117

Please sign in to comment.