Skip to content

Commit

Permalink
Merge pull request #17942 from mpirvu/missingbreak
Browse files Browse the repository at this point in the history
Add missing break statement for switch case
  • Loading branch information
dsouzai authored Aug 14, 2023
2 parents 58047f8 + 75afd20 commit ea0d545
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions runtime/compiler/control/JITClientCompilationThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1104,6 +1104,7 @@ handleServerMessage(JITServer::ClientStream *client, TR_J9VM *fe, JITServer::Mes
auto recv = client->getRecvData<uintptr_t *>();
client->write(response, fe->isInvokeCacheEntryAnArray(std::get<0>(recv)));
}
break;
case MessageType::VM_getKnotIndexOfInvokeCacheArrayAppendixElement:
{
auto recv = client->getRecvData<uintptr_t *>();
Expand Down

0 comments on commit ea0d545

Please sign in to comment.