Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.

Commit

Permalink
Fix CM_EQ_OP
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorBo committed Aug 9, 2019
1 parent a9c3508 commit 6fc00a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/jit/morph.cpp
Expand Up @@ -12766,7 +12766,11 @@ GenTree* Compiler::fgMorphSmpOp(GenTree* tree, MorphAddrContext* mac)
oper = (oper == GT_LE) ? GT_EQ : GT_NE;
tree->SetOper(oper, GenTree::PRESERVE_VN);
tree->gtFlags &= ~GTF_UNSIGNED;
goto CM_EQ_OP;

if (op1->OperIs(GT_MOD))
{
goto CM_EQ_OP;
}
}
}
}
Expand Down

0 comments on commit 6fc00a5

Please sign in to comment.