Skip to content

Commit

Permalink
Fix build break
Browse files Browse the repository at this point in the history
  • Loading branch information
EgorBo committed Mar 18, 2023
1 parent 250ce6d commit 26ff188
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/coreclr/jit/valuenum.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11052,7 +11052,7 @@ void Compiler::fgValueNumberIntrinsic(GenTree* tree)
{
ValueNumPair isCnsVNP(vnStore->VNForIntCon(vnStore->IsVNConstant(arg0VNP.GetLiberal()) ? 1 : 0),
vnStore->VNForIntCon(vnStore->IsVNConstant(arg0VNP.GetConservative()) ? 1 : 0));
intrinsic->gtVNPair = vnStore->VNPWithExc(ValueNumPair(isCnsVN, isCnsVN), arg0VNPx);
intrinsic->gtVNPair = vnStore->VNPWithExc(isCnsVNP, arg0VNPx);
}
else
{
Expand Down

0 comments on commit 26ff188

Please sign in to comment.