Skip to content

Commit

Permalink
Resolving build error for build 17528
Browse files Browse the repository at this point in the history
Update SystemLinkageLinux.cpp line 409 `cg()` to `this->cg()`

Issue: #5594
Signed-off-by: Prakhar Yadav <[email protected]>
  • Loading branch information
pkrc267 committed Nov 7, 2020
1 parent ea7a430 commit fa87fab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/z/codegen/SystemLinkageLinux.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ TR::S390zLinuxSystemLinkage::generateInstructionsForCall(TR::Node* callNode, TR:
TR::CodeGenerator * cg = this->cg();

TR::RegisterDependencyConditions * postDeps = new (trHeapMemory())
TR::RegisterDependencyConditions(NULL, deps->getPostConditions(), 0, deps->getAddCursorForPost(), cg());
TR::RegisterDependencyConditions(NULL, deps->getPostConditions(), 0, deps->getAddCursorForPost(), this->cg());

TR::Register * systemReturnAddressRegister =
deps->searchPostConditionRegister(getReturnAddressRegister());
Expand Down

0 comments on commit fa87fab

Please sign in to comment.