Skip to content

Commit

Permalink
Fix a copy and paste mistake
Browse files Browse the repository at this point in the history
Co-authored-by: Anton Lapounov <anton.lapounov@microsoft.com>
  • Loading branch information
SingleAccretion and AntonLapounov committed May 24, 2021
1 parent b64e00a commit 610b612
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 @@ -770,7 +770,7 @@ T ValueNumStore::EvalOpSpecialized(VNFunc vnf, T v0, T v1)

case VNF_MUL_OVF:
case VNF_MUL_UN_OVF:
assert(!CheckedOps::MulOverflows(v0, v1, vnf == VNF_SUB_UN_OVF));
assert(!CheckedOps::MulOverflows(v0, v1, vnf == VNF_MUL_UN_OVF));
return v0 * v1;

default:
Expand Down

0 comments on commit 610b612

Please sign in to comment.