[Ada] Fix off-by-one bug in underflow handling of Scaling
authorEric Botcazou <ebotcazou@adacore.com>
Wed, 20 Jan 2021 16:08:51 +0000 (17:08 +0100)
committerPierre-Marie de Rodat <derodat@adacore.com>
Thu, 6 May 2021 07:51:34 +0000 (03:51 -0400)
gcc/ada/

* libgnat/s-fatgen.adb (Scaling): Fix off-by-one bug for underflow.

gcc/ada/libgnat/s-fatgen.adb

index 95c0549..145d4ac 100644 (file)
@@ -784,7 +784,7 @@ package body System.Fat_Gen is
             --  Check for gradual underflow
 
             if T'Denorm
-              and then Adjustment >= IEEE_Emin - (Mantissa - 1) - Exp
+              and then Adjustment >= IEEE_Emin - Mantissa - Exp
             then
                Expf := IEEE_Emin;
                Expi := Exp + Adjustment - Expf;
@@ -807,6 +807,13 @@ package body System.Fat_Gen is
                         Float_Word (IEEE_Ebias + Expf) * Exp_Factor;
 
          if Expi < 0 then
+            --  Given that Expi >= -Mantissa, only -64 is problematic
+
+            if Expi = -64 then
+               XX := XX / 2.0;
+               Expi := -63;
+            end if;
+
             XX := XX / T (UST.Long_Long_Unsigned (2) ** (-Expi));
          end if;