Skip to content

Commit

Permalink
Merge pull request #7243 from knn-k/aarch64dualTLH
Browse files Browse the repository at this point in the history
AArch64: Disable Dual TLH by default
  • Loading branch information
0xdaryl committed Feb 15, 2024
2 parents 91f005a + dd21259 commit f9174a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compiler/control/OMROptions.cpp
Expand Up @@ -2727,8 +2727,8 @@ OMR::Options::jitPreProcess()
self()->setOption(TR_DisableZNext);
}

#if defined(TR_HOST_X86) || defined(TR_HOST_S390)
// Dual TLH disabled on default on X and Z
#if defined(TR_HOST_X86) || defined(TR_HOST_S390) || defined(TR_HOST_ARM64)
// Dual TLH disabled by default on X, Z, and AArch64
self()->setOption(TR_DisableDualTLH);
#endif

Expand Down

0 comments on commit f9174a0

Please sign in to comment.