Get rid of 64-bit constants.
This commit is contained in:
parent
709efa017c
commit
040d1d02f5
@ -19,9 +19,9 @@ static uvlong uvnan = 0x7FF0000000000001LL;
|
|||||||
static uvlong uvinf = 0x7FF0000000000000LL;
|
static uvlong uvinf = 0x7FF0000000000000LL;
|
||||||
static uvlong uvneginf = 0xFFF0000000000000LL;
|
static uvlong uvneginf = 0xFFF0000000000000LL;
|
||||||
#else
|
#else
|
||||||
static uvlong uvnan = 0x7FF0000000000001;
|
static uvlong uvnan = ((uvlong)0x7FF00000<<32)|0x00000001;
|
||||||
static uvlong uvinf = 0x7FF0000000000000;
|
static uvlong uvinf = ((uvlong)0x7FF00000<<32)|0x00000000;
|
||||||
static uvlong uvneginf = 0xFFF0000000000000;
|
static uvlong uvneginf = ((uvlong)0xFFF00000<<32)|0x00000000;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
double
|
double
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user