Skip to content

Commit 340bbc1

Browse files
committed
Cleanup assert
1 parent 352b114 commit 340bbc1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/jit/valuenum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9586,7 +9586,7 @@ ValueNum ValueNumStore::EvalMathFuncUnary(var_types typ, NamedIntrinsic gtMathFN
95869586
ValueNum ValueNumStore::EvalMathFuncBinary(
95879587
var_types typ, GenTreeFlags flags, NamedIntrinsic gtMathFN, ValueNum arg0VN, ValueNum arg1VN)
95889588
{
9589-
assert(varTypeIsArithmetic(typ) RISCV64_ONLY(|| varTypeIsIntegral(typ)));
9589+
assert(varTypeIsArithmetic(typ));
95909590
assert(arg0VN == VNNormalValue(arg0VN));
95919591
assert(arg1VN == VNNormalValue(arg1VN));
95929592
assert(m_pComp->IsMathIntrinsic(gtMathFN));

0 commit comments

Comments
 (0)