bitwise operation on unsigned
This commit is contained in:
parent
d1b52524f1
commit
f186e7bd83
@ -24,7 +24,7 @@ int mp_set_double(mp_int *a, double b)
|
||||
} cast;
|
||||
cast.dbl = b;
|
||||
|
||||
exp = (int)(cast.bits >> 52) & 0x7FF;
|
||||
exp = (unsigned)(cast.bits >> 52) & 0x7FFU;
|
||||
frac = (cast.bits & ((1ULL << 52) - 1ULL)) | (1ULL << 52);
|
||||
|
||||
if (exp == 0x7FF) { /* +-inf, NaN */
|
||||
|
Loading…
Reference in New Issue
Block a user