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:
parent
f62d738813
commit
37b98bbe67
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue