Skip to content

Commit

Permalink
Merge pull request #18344 from cjjdespres/fix-message-assert
Browse files Browse the repository at this point in the history
Fix mismatched JITServer message type
  • Loading branch information
mpirvu committed Oct 25, 2023
2 parents afa97fa + 11a04f4 commit 66e3fd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/control/JITClientCompilationThread.cpp
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 66e3fd1

Please sign in to comment.