From: Takashi Ohmasa Date: Mon, 23 Oct 2006 07:30:35 +0000 (+0100) Subject: [ARM] 3899/1: Fix the normalization of the denormal double precision number. X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=e816d71a50a714b532e3965364f3f53c23a53d42;p=mv-sheeva.git [ARM] 3899/1: Fix the normalization of the denormal double precision number. The significand should be shifted until the value of bit [62] is 1 to normalize the denormal double number. Signed-off-by: Takashi Ohmasa Signed-off-by: Russell King --- diff --git a/arch/arm/vfp/vfpdouble.c b/arch/arm/vfp/vfpdouble.c index 4fc05ee0a2e..e44b9ed0f81 100644 --- a/arch/arm/vfp/vfpdouble.c +++ b/arch/arm/vfp/vfpdouble.c @@ -56,7 +56,7 @@ static void vfp_double_normalise_denormal(struct vfp_double *vd) { int bits = 31 - fls(vd->significand >> 32); if (bits == 31) - bits = 62 - fls(vd->significand); + bits = 63 - fls(vd->significand); vfp_double_dump("normalise_denormal: in", vd);