Skip to content

Commit

Permalink
Merge pull request #6962 from fjeremic/revert-z15-0.16.0
Browse files Browse the repository at this point in the history
Revert "Enable z15 by default" (0.16.0)
  • Loading branch information
pshipton committed Sep 4, 2019
2 parents 227a3c8 + 19b878a commit 7af314c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions runtime/compiler/control/J9Options.cpp
Expand Up @@ -1961,6 +1961,14 @@ J9::Options::fePreProcess(void * base)
{
self()->setOption(TR_InlineVeryLargeCompiledMethods);
}

static bool enableZ15 = feGetEnv("TR_EnableZ15") != NULL;

if (!enableZ15)
{
// Disable zNext support until it has been gone through several rounds of functional stress testing
self()->setOption(TR_DisableZ15);
}
#endif

// On big machines we can afford to spend more time compiling
Expand Down

0 comments on commit 7af314c

Please sign in to comment.