[Ada] Fix three-letter typos like "sss" in comments and docs
authorPiotr Trojanek <trojanek@adacore.com>
Wed, 18 Dec 2019 07:15:22 +0000 (07:15 +0000)
committerPierre-Marie de Rodat <pmderodat@gcc.gnu.org>
Wed, 18 Dec 2019 07:15:22 +0000 (07:15 +0000)
2019-12-18  Piotr Trojanek  <trojanek@adacore.com>

gcc/ada/

* doc/gnat_rm/implementation_defined_pragmas.rst,
doc/gnat_rm/obsolescent_features.rst,
doc/gnat_ugn/gnat_and_program_execution.rst, exp_attr.adb,
exp_ch9.adb, init.c, libgnat/s-valrea.adb, par-ch6.adb,
sem_attr.adb, sem_ch4.adb, sem_util.ads: Fix trivial typos.
* gnat_rm.texi, gnat_ugn.texi: Regenerate.

From-SVN: r279514

14 files changed:
gcc/ada/ChangeLog
gcc/ada/doc/gnat_rm/implementation_defined_pragmas.rst
gcc/ada/doc/gnat_rm/obsolescent_features.rst
gcc/ada/doc/gnat_ugn/gnat_and_program_execution.rst
gcc/ada/exp_attr.adb
gcc/ada/exp_ch9.adb
gcc/ada/gnat_rm.texi
gcc/ada/gnat_ugn.texi
gcc/ada/init.c
gcc/ada/libgnat/s-valrea.adb
gcc/ada/par-ch6.adb
gcc/ada/sem_attr.adb
gcc/ada/sem_ch4.adb
gcc/ada/sem_util.ads

index acf3b3b51677b0d98600e285ceae2b092b03f5f8..90d25c022c9b6b364c0d254b96c428f0ba2aa4ff 100644 (file)
@@ -1,3 +1,12 @@
+2019-12-18  Piotr Trojanek  <trojanek@adacore.com>
+
+       * doc/gnat_rm/implementation_defined_pragmas.rst,
+       doc/gnat_rm/obsolescent_features.rst,
+       doc/gnat_ugn/gnat_and_program_execution.rst, exp_attr.adb,
+       exp_ch9.adb, init.c, libgnat/s-valrea.adb, par-ch6.adb,
+       sem_attr.adb, sem_ch4.adb, sem_util.ads: Fix trivial typos.
+       * gnat_rm.texi, gnat_ugn.texi: Regenerate.
+
 2019-12-18  Gary Dismukes  <dismukes@adacore.com>
 
        * sem_res.adb (Resolve_Type_Conversion): Add handling for access
index 42087ade155aa6428b65ec37f0b5ddb2fabc3bdf..c3d6f90714c3591a19b9e41f5871c3aafb013d3f 100644 (file)
@@ -1344,7 +1344,7 @@ are equivalent to
 The precondition ensures that one and only one of the case guards is
 satisfied on entry to the subprogram.
 The postcondition ensures that for the case guard that was True on entry,
-the corrresponding consequence is True on exit. Other consequence expressions
+the corresponding consequence is True on exit. Other consequence expressions
 are not evaluated.
 
 A precondition ``P`` and postcondition ``Q`` can also be
index 2082a2a33fe364c041f090d973bd66a810b15450..3ba502188e034fd370895b561634dbf6c0149a50 100644 (file)
@@ -49,7 +49,7 @@ pragma Task_Info
 The functionality provided by pragma ``Task_Info`` is now part of the
 Ada language. The ``CPU`` aspect and the package
 ``System.Multiprocessors`` offer a less system-dependent way to specify
-task affinity or to query the number of processsors.
+task affinity or to query the number of processors.
 
 Syntax
 
index 0fb9bdd3282773b8a11eff7ff51d381f141cb5e1..ba2c9b6d201967627f044560036cad4c0bd8bca4 100644 (file)
@@ -2964,7 +2964,7 @@ integer arithmetic package. The compiler will make calls
 to this package, though only in cases where it cannot be
 sure that ``Long_Long_Integer`` is sufficient to guard against
 intermediate overflows. This package does not use dynamic
-alllocation, but it does use the secondary stack, so an
+allocation, but it does use the secondary stack, so an
 appropriate secondary stack package must be present (this
 is always true for standard full Ada, but may require
 specific steps for restricted run times such as ZFP).
index f35fa73128ef4308a7ced0a32e2c9811e11e968d..4057a36dc11c87ed767edcb404d1f14e6d6d7f4a 100644 (file)
@@ -5246,7 +5246,7 @@ package body Exp_Attr is
                                 Rep_To_Pos_Flag (Ptyp, Loc))))));
 
             else
-               --  Add Boolean parameter True, to request program errror if
+               --  Add Boolean parameter True, to request program error if
                --  we have a bad representation on our hands. If checks are
                --  suppressed, then add False instead
 
@@ -6216,7 +6216,7 @@ package body Exp_Attr is
                                     Make_Integer_Literal (Loc, 1))),
                                 Rep_To_Pos_Flag (Ptyp, Loc))))));
             else
-               --  Add Boolean parameter True, to request program errror if
+               --  Add Boolean parameter True, to request program error if
                --  we have a bad representation on our hands. Add False if
                --  checks are suppressed.
 
index 7b8edf43509e2ac18202dcf6d52d63671e85ca5f..64ac3533caf20a1cfe386cd0baad0e22e930f7bb 100644 (file)
@@ -363,7 +363,7 @@ package body Exp_Ch9 is
    --  a null trailing statement with the given Loc (which is the sloc of
    --  the accept, delay, or entry call statement). There might not be any
    --  generated code for the accept, delay, or entry call itself (the effect
-   --  of these statements is part of the general processsing done for the
+   --  of these statements is part of the general processing done for the
    --  enclosing selective accept, timed entry call, or asynchronous select),
    --  and the null statement is there to carry the sloc of that statement to
    --  the back-end for trace-based coverage analysis purposes.
index 6476591028ce5bd00dbd184bcbe213978fce286d..5261d38bb220bf526f442d5a6c50bfeefc51ef0e 100644 (file)
@@ -2751,7 +2751,7 @@ pragma Postcondition (if C2 then Pred2);
 The precondition ensures that one and only one of the case guards is
 satisfied on entry to the subprogram.
 The postcondition ensures that for the case guard that was True on entry,
-the corrresponding consequence is True on exit. Other consequence expressions
+the corresponding consequence is True on exit. Other consequence expressions
 are not evaluated.
 
 A precondition @code{P} and postcondition @code{Q} can also be
@@ -28804,7 +28804,7 @@ this kind of implementation dependent addition.
 The functionality provided by pragma @code{Task_Info} is now part of the
 Ada language. The @code{CPU} aspect and the package
 @code{System.Multiprocessors} offer a less system-dependent way to specify
-task affinity or to query the number of processsors.
+task affinity or to query the number of processors.
 
 Syntax
 
index 1a991e91118620c3d3042515189d2ed47ad31b44..66bea96d13af68dd646be8de091465a001aea4e3 100644 (file)
@@ -22795,7 +22795,7 @@ integer arithmetic package. The compiler will make calls
 to this package, though only in cases where it cannot be
 sure that @code{Long_Long_Integer} is sufficient to guard against
 intermediate overflows. This package does not use dynamic
-alllocation, but it does use the secondary stack, so an
+allocation, but it does use the secondary stack, so an
 appropriate secondary stack package must be present (this
 is always true for standard full Ada, but may require
 specific steps for restricted run times such as ZFP).
index f7e830e9259bd20d2cbdef7e35552bfa5e25a749..67ea4dc25798bdeeefe961ec6a5306eb063ea28e 100644 (file)
@@ -1564,7 +1564,7 @@ int __gl_heap_size = 64;
    operation, drivide by zero, and overflow. This will prevent the VMS runtime
    (specifically OTS$CHECK_FP_MODE) from complaining about inconsistent
    floating point settings in a mixed language program. Ideally the setting
-   would be determined at link time based on setttings in the object files,
+   would be determined at link time based on settings in the object files,
    however the VMS linker seems to take the setting from the first object
    in the link, e.g. pcrt0.o which is float representation neutral.  */
 char __gl_float_format = 'I';
index 519e369d94ff77c65b9113ac407a175596b9b163..424ccd05f4e7ebe52571ea5a67d5cb42aef58027 100644 (file)
@@ -204,7 +204,7 @@ package body System.Val_Real is
 
          if Digit < 0 then
             if Digit = Underscore and Index + 1 <= Max then
-               --  Underscore is only alllowed if followed by a digit
+               --  Underscore is only allowed if followed by a digit
                Digit := As_Digit (Str (Index + 1));
                if Digit in Valid_Digit then
                   Index := Index + 1;
index bf7f9719b656eb7ad457b047117d8af7d0d01473..8445a4ec412b156d6b89fd3ba9b2f4ff27c8b293 100644 (file)
@@ -999,7 +999,7 @@ package body Ch6 is
 
          if Pf_Flags.Pbod
 
-           --  Disconnnect this processing if we have scanned a null procedure
+           --  Disconnect this processing if we have scanned a null procedure
            --  because in this case the spec is complete anyway with no body.
 
            and then (Nkind (Specification_Node) /= N_Procedure_Specification
index 72729ec8fc4f8487611caba95e06dcf0ad23bfca..190d281e4558f7b5bced31b42a7063161b3cbe43 100644 (file)
@@ -10503,7 +10503,7 @@ package body Sem_Attr is
                   --  to a missed warning (the Valid check does not really
                   --  modify!) If this case, Note will be reset to False.
 
-                  --  Skip it as well if the type is an Acccess_To_Constant,
+                  --  Skip it as well if the type is an Access_To_Constant,
                   --  given that no use of the value can modify the prefix.
 
                begin
index 0158623d496b8c8dd32a5e42fa862c2ed556ed36..591011252aabeb6b5719ca6e33b75708f723d0ab 100644 (file)
@@ -676,7 +676,7 @@ package body Sem_Ch4 is
 
                --  In GNATprove mode we need to preserve the link between
                --  the original subtype indication and the anonymous subtype,
-               --  to extend proofs to constrained acccess types. We only do
+               --  to extend proofs to constrained access types. We only do
                --  that outside of spec expressions, otherwise the declaration
                --  cannot be inserted and analyzed. In such a case, GNATprove
                --  later rejects the allocator as it is not used here in
index 351d992a4d5302f68a9e6181f317eb1015522fba..c148a50d72b61cddccd68e337bb6bca8d24ce2c1 100644 (file)
@@ -547,7 +547,7 @@ package Sem_Util is
    function Deepest_Type_Access_Level (Typ : Entity_Id) return Uint;
    --  Same as Type_Access_Level, except that if the type is the type of an Ada
    --  2012 stand-alone object of an anonymous access type, then return the
-   --  static accesssibility level of the object. In that case, the dynamic
+   --  static accessibility level of the object. In that case, the dynamic
    --  accessibility level of the object may take on values in a range. The low
    --  bound of that range is returned by Type_Access_Level; this function
    --  yields the high bound of that range. Also differs from Type_Access_Level