Skip to content

Commit

Permalink
Merge pull request #9764 from knn-k/aarch64getOffsetToFirstParm
Browse files Browse the repository at this point in the history
AArch64: Fix a build break with getOffsetToFirstParm()
  • Loading branch information
pshipton committed Jun 2, 2020
2 parents cdbfdf9 + c05408e commit 67cfc35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/compiler/aarch64/codegen/ARM64PrivateLinkage.cpp
Expand Up @@ -843,7 +843,7 @@ int32_t J9::ARM64::PrivateLinkage::buildPrivateLinkageArgs(TR::Node *callNode,
int32_t numMemArgs = 0;
int32_t memArgSize = 0;
int32_t from, to, step;
int32_t argSize = -properties.getOffsetToFirstParm();
int32_t argSize = -getOffsetToFirstParm();
int32_t totalSize = 0;
int32_t multiplier;

Expand Down

0 comments on commit 67cfc35

Please sign in to comment.