We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d8a7f commit 60d82fcCopy full SHA for 60d82fc
src/coreclr/jit/importercalls.cpp
@@ -7996,6 +7996,7 @@ bool Compiler::IsMathIntrinsic(NamedIntrinsic intrinsicName)
7996
{
7997
switch (intrinsicName)
7998
7999
+
8000
case NI_System_Math_Abs:
8001
case NI_System_Math_Acos:
8002
case NI_System_Math_Acosh:
@@ -8046,9 +8047,6 @@ bool Compiler::IsMathIntrinsic(NamedIntrinsic intrinsicName)
8046
8047
8048
default:
8049
- assert((intrinsicName < NI_SYSTEM_MATH_START) || (intrinsicName > NI_SYSTEM_MATH_END) ||
8050
- (intrinsicName != NI_PRIMITIVE_LeadingZeroCount) ||
8051
- (intrinsicName != NI_PRIMITIVE_TrailingZeroCount) || (intrinsicName != NI_PRIMITIVE_PopCount));
8052
return false;
8053
}
8054
0 commit comments