Skip to content

Commit

Permalink
Merge pull request #4161 from knn-k/aarch64eval48
Browse files Browse the repository at this point in the history
AArch64: Fix genericBinaryEvaluator()
  • Loading branch information
0xdaryl committed Jul 26, 2019
2 parents c4a5982 + d59baf9 commit 8acafad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compiler/aarch64/codegen/BinaryEvaluator.cpp
Expand Up @@ -57,7 +57,7 @@ genericBinaryEvaluator(TR::Node *node, TR::InstOpCode::Mnemonic regOp, TR::InstO
}
else if(1 == secondChild->getReferenceCount() && secondChild->getRegister() != NULL)
{
trgReg = src2Reg;
trgReg = secondChild->getRegister();
}
else
{
Expand Down

0 comments on commit 8acafad

Please sign in to comment.