Skip to content

Commit

Permalink
Automerge master into ibm_sdk 2017-10-25-19:43:46
Browse files Browse the repository at this point in the history
  • Loading branch information
j9build committed Oct 25, 2017
2 parents 98c1ffc + 1fd49aa commit 338c5b9
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -263,9 +263,14 @@ ReduceSynchronizedFieldLoad::perform()
{
if (!cg->comp()->getOption(TR_DisableSynchronizedFieldLoad))
{
traceMsg(cg->comp(), "Performing ReduceSynchronizedFieldLoad\n");
static const bool enableReduceSynchronizedFieldLoad = feGetEnv("TR_EnableReduceSynchronizedFieldLoad") != NULL;

transformed = performOnTreeTops(cg->comp()->getStartTree(), NULL);
if (enableReduceSynchronizedFieldLoad)
{
traceMsg(cg->comp(), "Performing ReduceSynchronizedFieldLoad\n");

transformed = performOnTreeTops(cg->comp()->getStartTree(), NULL);
}
}
}

Expand Down

0 comments on commit 338c5b9

Please sign in to comment.