[Ada] Minor comment fix in System.Val_Real
authorEric Botcazou <ebotcazou@adacore.com>
Sat, 5 Dec 2020 07:53:16 +0000 (08:53 +0100)
committerPierre-Marie de Rodat <derodat@adacore.com>
Thu, 17 Dec 2020 10:49:24 +0000 (05:49 -0500)
gcc/ada/

* libgnat/s-valrea.adb (Need_Extra): Fix comment.

gcc/ada/libgnat/s-valrea.adb

index 9614760199d26cf8f085a84c9fbc3512a48ee830..0ac3846542b75132660ff8da9c3c898b418b2077 100644 (file)
@@ -43,10 +43,10 @@ package body System.Val_Real is
    --  We need an unsigned type large enough to represent the mantissa
 
    Need_Extra : constant Boolean := Num'Machine_Mantissa > Uns'Size - 4;
-   --  If the mantissa of the floating-point type is almost as large as that
-   --  of the unsigned type, we do not have enough space for an extra digit
-   --  in the unsigned type so we handle the extra digit separately, at the
-   --  cost of a potential roundoff error.
+   --  If the mantissa of the floating-point type is almost as large as the
+   --  unsigned type, we do not have enough space for an extra digit in the
+   --  unsigned type so we handle the extra digit separately, at the cost of
+   --  a potential roundoff error.
 
    Precision_Limit : constant Uns :=
      (if Need_Extra then 2**Num'Machine_Mantissa - 1 else 2**Uns'Size - 1);