Skip to content

Commit

Permalink
Merge pull request #17168 from jdmpapin/prex-array-sig
Browse files Browse the repository at this point in the history
Create prex arg info from callee symbol for array-typed parameters
  • Loading branch information
vijaysun-omr committed Apr 20, 2023
2 parents 7f68fd6 + 3b9c489 commit fdbd742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/optimizer/InlinerTempForJ9.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5726,7 +5726,7 @@ TR_PrexArgInfo* TR_PrexArgInfo::buildPrexArgInfoForMethodSymbol(TR::ResolvedMeth
int32_t len = 0;
const char *sig = p->getTypeSignature(len);

if (*sig == 'L' || *sig == 'Q')
if (*sig == 'L' || *sig == 'Q' || *sig == '[')
{
TR_OpaqueClassBlock *clazz = (index == 0 && !methodSymbol->isStatic()) ? feMethod->containingClass() : comp->fe()->getClassFromSignature(sig, len, feMethod);
if (clazz)
Expand Down

0 comments on commit fdbd742

Please sign in to comment.