Skip to content

Commit

Permalink
Remove isAOT check in order to enable relo logging for JITServer (#4445)
Browse files Browse the repository at this point in the history
Remove isAOT check in order to enable relo logging for JITServer
  • Loading branch information
fjeremic authored Nov 19, 2019
2 parents cf762cd + 19eb6bf commit 3674f0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/codegen/OMRCodeGenPhase.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ OMR::CodeGenPhase::performProcessRelocationsPhase(TR::CodeGenerator * cg, TR::Co
}
}

if (comp->getOption(TR_AOT) && (comp->getOption(TR_TraceRelocatableDataCG) || comp->getOption(TR_TraceRelocatableDataDetailsCG) || comp->getOption(TR_TraceReloCG)))
if (cg->getAheadOfTimeCompile() && (comp->getOption(TR_TraceRelocatableDataCG) || comp->getOption(TR_TraceRelocatableDataDetailsCG) || comp->getOption(TR_TraceReloCG)))
{
traceMsg(comp, "\n<relocatableDataCG>\n");
if (comp->getOption(TR_TraceRelocatableDataDetailsCG)) // verbose output
Expand Down

0 comments on commit 3674f0b

Please sign in to comment.