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.

(cherry picked from commit 2ff6af254b)
This commit is contained in:
Martin Whitaker 2019-01-26 16:47:28 +00:00
parent f62d738813
commit 37b98bbe67
1 changed files with 1 additions and 1 deletions

View File

@ -3771,7 +3771,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. */