improved test for overflow
This commit is contained in:
parent
9743bc8d49
commit
aba2766aae
@ -26,8 +26,10 @@ long2str(val, base)
|
||||
if (val) {
|
||||
if (base > 0) {
|
||||
if (val < 0L) {
|
||||
if ((val = -val) < 0L)
|
||||
long v1 = -val;
|
||||
if (v1 == val)
|
||||
goto overflow;
|
||||
val = v1;
|
||||
}
|
||||
else
|
||||
sign = 0;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user