Use LLONG_MIN instead of LONG_LONG_MIN.

GCC 8 no longer defines LONG_LONG_MIN. We already assume a C99 compliant
compiler in other places.
This commit is contained in:
Martin Whitaker 2019-01-26 16:47:28 +00:00
parent e745304cc4
commit 2ff6af254b
1 changed files with 1 additions and 1 deletions

View File

@ -4000,7 +4000,7 @@ bool of_MOD_S(vthread_t thr, vvp_code_t)
if (rv == 0)
goto x_out;
if ((lv == LONG_LONG_MIN) && (rv == -1))
if ((lv == LLONG_MIN) && (rv == -1))
goto zero_out;
/* Sign extend the signed operands when needed. */