From aa98dbfe80580169f3df12489a77e8b904a1d9b9 Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 30 Jan 2020 20:17:34 +0900 Subject: Removed explicit usage of the 'register' keyword. Signed-off-by: Michele Calgaro --- kjs/dtoa.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'kjs/dtoa.cpp') diff --git a/kjs/dtoa.cpp b/kjs/dtoa.cpp index 054450f12..c39fa5bc6 100644 --- a/kjs/dtoa.cpp +++ b/kjs/dtoa.cpp @@ -610,9 +610,9 @@ s2b static int hi0bits - (register ULong x) + (ULong x) { - register int k = 0; + int k = 0; if (!(x & 0xffff0000)) { k = 16; @@ -642,8 +642,8 @@ hi0bits lo0bits (ULong *y) { - register int k; - register ULong x = *y; + int k; + ULong x = *y; if (x & 7) { if (x & 1) @@ -1035,7 +1035,7 @@ diff ulp (double dx) { - register Long L; + Long L; U x, a; dval(x) = dx; -- cgit v1.2.1