Skip to content

Commit

Permalink
Fix mismatched JITServer message type
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Despres <[email protected]>
  • Loading branch information
cjjdespres committed Oct 25, 2023
1 parent 27d7433 commit 11a04f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/control/JITClientCompilationThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1141,7 +1141,7 @@ handleServerMessage(JITServer::ClientStream *client, TR_J9VM *fe, JITServer::Mes
{
auto recv = client->getRecvData<TR::KnownObjectTable::Index>();
TR_J9VMBase::MemberNameMethodInfo info = {};
uintptr_t ok = fe->getMemberNameMethodInfo(comp, std::get<0>(recv), &info);
bool ok = fe->getMemberNameMethodInfo(comp, std::get<0>(recv), &info);
client->write(response, ok, info.vmtarget, info.vmindex, info.clazz, info.refKind);
}
break;
Expand Down

0 comments on commit 11a04f4

Please sign in to comment.