Fix compilation warning (#32740)
authorpi1024e <49824824+pi1024e@users.noreply.github.com>
Mon, 24 Feb 2020 18:50:57 +0000 (13:50 -0500)
committerGitHub <noreply@github.com>
Mon, 24 Feb 2020 18:50:57 +0000 (13:50 -0500)
commit1905bde27967bff71c95ec5cbf2e099d80dce5f4
tree0067bd82c7af46884de658d205d31f23e5dd7068
parent67e9a10f919aa473d4685ddeb3cd7fc621191eb6
Fix compilation warning (#32740)

When compiling, Visual Studio gives two compiler warnings in the sysmath.c file about FPILOGB0/-2147483648 being converted into an unsigned integer.

The standard library math.h states that FPILOGB0 be INT_MIN, so I replaced -2147483648 with the INT_MIN macro so the behavior is much more clear as well as stifling the compiler warnings.

Changes tested manually and automatically.
src/mono/mono/metadata/sysmath.c