Skip to content

Commit

Permalink
Merge pull request #5053 from PeXXeR/callRet_deprOp
Browse files Browse the repository at this point in the history
Remove deprecated Call/Return IL Opcodes
  • Loading branch information
0xdaryl authored Mar 18, 2019
2 parents f6ba273 + a05746d commit c9396a6
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
2 changes: 0 additions & 2 deletions runtime/compiler/p/codegen/J9TreeEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -338,8 +338,6 @@ extern void TEMPORARY_initJ9PPCTreeEvaluatorTable(TR::CodeGenerator *cg)
tet[TR::dcall] = TR::TreeEvaluator::directCallEvaluator;
tet[TR::acall] = TR::TreeEvaluator::directCallEvaluator;
tet[TR::call] = TR::TreeEvaluator::directCallEvaluator;
tet[TR::iucall] = TR::TreeEvaluator::directCallEvaluator;
tet[TR::lucall] = TR::TreeEvaluator::directCallEvaluator;
tet[TR::vcall] = TR::TreeEvaluator::directCallEvaluator;

tet[TR::tstart] = TR::TreeEvaluator::tstartEvaluator;
Expand Down
4 changes: 0 additions & 4 deletions runtime/compiler/z/codegen/J9S390PrivateLinkage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3259,12 +3259,10 @@ TR::S390PrivateLinkage::buildDirectDispatch(TR::Node * callNode)
switch (callNode->getOpCodeValue())
{
case TR::icall:
case TR::iucall:
case TR::acall:
returnRegister = dependencies->searchPostConditionRegister(getIntegerReturnRegister());
break;
case TR::lcall:
case TR::lucall:
{
if (TR::Compiler->target.is64Bit())
{
Expand Down Expand Up @@ -3346,12 +3344,10 @@ TR::S390PrivateLinkage::buildIndirectDispatch(TR::Node * callNode)
switch (callNode->getOpCodeValue())
{
case TR::icalli:
case TR::iucalli:
case TR::acalli:
returnRegister = dependencies->searchPostConditionRegister(getIntegerReturnRegister());
break;
case TR::lcalli:
case TR::lucalli:
{
if (TR::Compiler->target.is64Bit())
{
Expand Down

0 comments on commit c9396a6

Please sign in to comment.