Skip to content

Commit

Permalink
Merge pull request #9614 from klangman/PR143442
Browse files Browse the repository at this point in the history
  • Loading branch information
fjeremic committed May 22, 2020
2 parents 10e7ca7 + eeec886 commit 4cbf03a
Showing 1 changed file with 4 additions and 14 deletions.
18 changes: 4 additions & 14 deletions runtime/compiler/z/codegen/J9TreeEvaluator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4662,21 +4662,11 @@ J9::Z::TreeEvaluator::BNDCHKwithSpineCHKEvaluator(TR::Node *node, TR::CodeGenera
else
op = (cg->comp()->target().is64Bit() ? TR::InstOpCode::LGB : TR::InstOpCode::LB);
break;
case TR::Int16: if (actualLoadOrStoreChild->getOpCode().isShort())
{
op = TR::InstOpCode::getLoadHalfWordOpCode();
}
case TR::Int16:
if (loadOrStoreChild->isZeroExtendedAtSource())
op = (cg->comp()->target().is64Bit() ? TR::InstOpCode::LLGH : TR::InstOpCode::LLH);
else
{
if (cg->comp()->target().is64Bit())
{
op = TR::InstOpCode::LLGH;
}
else
{
op = TR::InstOpCode::LLH;
}
}
op = (cg->comp()->target().is64Bit() ? TR::InstOpCode::LGH : TR::InstOpCode::LH);
break;
case TR::Int32:
if (loadOrStoreChild->isZeroExtendedAtSource())
Expand Down

0 comments on commit 4cbf03a

Please sign in to comment.