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:
parent
e745304cc4
commit
2ff6af254b
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Reference in New Issue