From 040d1d02f5b829f59e63123d7095aea7d04e372b Mon Sep 17 00:00:00 2001 From: rsc Date: Thu, 23 Sep 2004 03:05:40 +0000 Subject: Get rid of 64-bit constants. --- src/lib9/fmt/nan64.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/lib9/fmt/nan64.c') diff --git a/src/lib9/fmt/nan64.c b/src/lib9/fmt/nan64.c index 4df496cc..dcdcd799 100644 --- a/src/lib9/fmt/nan64.c +++ b/src/lib9/fmt/nan64.c @@ -19,9 +19,9 @@ static uvlong uvnan = 0x7FF0000000000001LL; static uvlong uvinf = 0x7FF0000000000000LL; static uvlong uvneginf = 0xFFF0000000000000LL; #else -static uvlong uvnan = 0x7FF0000000000001; -static uvlong uvinf = 0x7FF0000000000000; -static uvlong uvneginf = 0xFFF0000000000000; +static uvlong uvnan = ((uvlong)0x7FF00000<<32)|0x00000001; +static uvlong uvinf = ((uvlong)0x7FF00000<<32)|0x00000000; +static uvlong uvneginf = ((uvlong)0xFFF00000<<32)|0x00000000; #endif double -- cgit v1.2.3