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
dsouzai authored Aug 14, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
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
@@ -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 *>();

0 comments on commit ea0d545

Please sign in to comment.