Skip to content

Commit

Permalink
Merge pull request #20743 from luke-li-2003/SequenceErrHandleServerMsg
Browse files Browse the repository at this point in the history
Fix Sequence Error in a Case of HandleServerMessage
  • Loading branch information
mpirvu authored Dec 4, 2024
2 parents 0ef098c + 3b2eb69 commit d1d7a16
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/compiler/control/JITClientCompilationThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,8 @@ handleServerMessage(JITServer::ClientStream *client, TR_J9VM *fe, JITServer::Mes
auto recv = client->getRecvData<TR::KnownObjectTable::Index>();
auto idx = std::get<0>(recv);
bool isJL;
client->write(response, fe->getObjectClassFromKnownObjectIndex(comp, idx, &isJL), isJL);
TR_OpaqueClassBlock *result = fe->getObjectClassFromKnownObjectIndex(comp, idx, &isJL);
client->write(response, result, isJL);
}
break;
case MessageType::VM_getObjectClassInfoFromObjectReferenceLocation:
Expand Down

0 comments on commit d1d7a16

Please sign in to comment.