[multiple changes]
authorArnaud Charlet <charlet@gcc.gnu.org>
Tue, 2 Aug 2011 13:10:33 +0000 (15:10 +0200)
committerArnaud Charlet <charlet@gcc.gnu.org>
Tue, 2 Aug 2011 13:10:33 +0000 (15:10 +0200)
2011-08-02  Robert Dewar  <dewar@adacore.com>

* sem_ch3.adb, sem_ch5.adb, sem_type.adb, switch-c.adb, switch-c.ads,
sem_prag.adb, sem_util.adb, sem_util.ads, sem_res.adb, warnsw.ads,
prepcomp.ads, cstand.adb, stand.ads, a-calfor.adb, s-stusta.adb:
Minor reformatting.

2011-08-02  Ed Schonberg  <schonberg@adacore.com>

* sem_attr.adb: handle properly 'Result when it is a prefix of an
indexed component.

2011-08-02  Javier Miranda  <miranda@adacore.com>

* einfo.ads, einfo.adb
(Original_Access_Type): Move this attribute to Node26 since there was
an undocumented use of Node21 in E_Access_Subprogram_Type entities
which causes conflicts and breaks the generation of the .NET compiler.
(Interface_Name): Add missing documentation on JGNAT only uses of
this attribute.

From-SVN: r177145

19 files changed:
gcc/ada/ChangeLog
gcc/ada/a-calfor.adb
gcc/ada/cstand.adb
gcc/ada/einfo.adb
gcc/ada/einfo.ads
gcc/ada/prepcomp.ads
gcc/ada/s-stusta.adb
gcc/ada/sem_attr.adb
gcc/ada/sem_ch3.adb
gcc/ada/sem_ch5.adb
gcc/ada/sem_prag.adb
gcc/ada/sem_res.adb
gcc/ada/sem_type.adb
gcc/ada/sem_util.adb
gcc/ada/sem_util.ads
gcc/ada/stand.ads
gcc/ada/switch-c.adb
gcc/ada/switch-c.ads
gcc/ada/warnsw.ads

index 7954c5584094c59c034a175291bf08af8b1d9214..83ff0830e2eff9352117e51f933fb066c5a7619d 100644 (file)
@@ -1,3 +1,24 @@
+2011-08-02  Robert Dewar  <dewar@adacore.com>
+
+       * sem_ch3.adb, sem_ch5.adb, sem_type.adb, switch-c.adb, switch-c.ads,
+       sem_prag.adb, sem_util.adb, sem_util.ads, sem_res.adb, warnsw.ads,
+       prepcomp.ads, cstand.adb, stand.ads, a-calfor.adb, s-stusta.adb:
+       Minor reformatting.
+
+2011-08-02  Ed Schonberg  <schonberg@adacore.com>
+
+       * sem_attr.adb: handle properly 'Result when it is a prefix of an
+       indexed component.
+
+2011-08-02  Javier Miranda  <miranda@adacore.com>
+
+       * einfo.ads, einfo.adb
+       (Original_Access_Type): Move this attribute to Node26 since there was
+       an undocumented use of Node21 in E_Access_Subprogram_Type entities
+       which causes conflicts and breaks the generation of the .NET compiler.
+       (Interface_Name): Add missing documentation on JGNAT only uses of
+       this attribute.
+
 2011-08-02  Javier Miranda  <miranda@adacore.com>
 
        * exp_pakd.adb (Expand_Packed_Element_Reference): Disable this routine
index 41f8c2595dd38723cf45de38fb5fef761b86912d..e683e3c389bff1c734a6c851363edc49e0a21c5f 100644 (file)
@@ -197,7 +197,7 @@ package body Ada.Calendar.Formatting is
       Include_Time_Fraction : Boolean := False;
       Time_Zone             : Time_Zones.Time_Offset := 0) return String
    is
-      To_Char    : constant array (0 .. 9) of Character := "0123456789";
+      To_Char : constant array (0 .. 9) of Character := "0123456789";
 
       Year        : Year_Number;
       Month       : Month_Number;
@@ -212,8 +212,8 @@ package body Ada.Calendar.Formatting is
       --  The result length depends on whether fractions are requested.
 
       Result : String := "0000-00-00 00:00:00.00";
-      Last   : constant Positive
-                 := Result'Last - (if Include_Time_Fraction then 0 else 3);
+      Last   : constant Positive :=
+                 Result'Last - (if Include_Time_Fraction then 0 else 3);
 
    begin
       Split (Date, Year, Month, Day,
@@ -347,7 +347,7 @@ package body Ada.Calendar.Formatting is
    begin
       --  Validity checks
 
-      if not Hour'Valid
+      if        not Hour'Valid
         or else not Minute'Valid
         or else not Second'Valid
         or else not Sub_Second'Valid
index ad79aabd360fba2651b4d3fb7566040570b57f2a..2df2a407574bf3a89ab532fdb8c9cd62b9e5e592 100644 (file)
@@ -196,14 +196,15 @@ package body CStand is
       Set_Size_Known_At_Compile_Time (E);
    end Build_Float_Type;
 
-   ------------------------
+   ------------------------------
    -- Find_Back_End_Float_Type --
-   ------------------------
+   ------------------------------
 
    function Find_Back_End_Float_Type (Name : String) return Entity_Id is
-      N : Elmt_Id := First_Elmt (Back_End_Float_Types);
+      N : Elmt_Id;
 
    begin
+      N := First_Elmt (Back_End_Float_Types);
       while Present (N) and then Get_Name_String (Chars (Node (N))) /= Name
       loop
          Next_Elmt (N);
index 42217f5420f301ee1b6daed5fefcade3407baad1..c050776911b39e6db604a27ff90a87123aa8cf44 100644 (file)
@@ -181,7 +181,6 @@ package body Einfo is
    --    Default_Expr_Function           Node21
    --    Discriminant_Constraint         Elist21
    --    Interface_Name                  Node21
-   --    Original_Access_Type            Node21
    --    Original_Array_Type             Node21
    --    Small_Value                     Ureal21
 
@@ -221,6 +220,7 @@ package body Einfo is
 
    --    Dispatch_Table_Wrappers         Elist26
    --    Last_Assignment                 Node26
+   --    Original_Access_Type            Node26
    --    Overridden_Operation            Node26
    --    Package_Instantiation           Node26
    --    Relative_Deadline_Variable      Node26
@@ -2357,7 +2357,7 @@ package body Einfo is
    function Original_Access_Type (Id : E) return E is
    begin
       pragma Assert (Ekind (Id) = E_Access_Subprogram_Type);
-      return Node21 (Id);
+      return Node26 (Id);
    end Original_Access_Type;
 
    function Original_Array_Type (Id : E) return E is
@@ -4862,7 +4862,7 @@ package body Einfo is
    procedure Set_Original_Access_Type (Id : E; V : E) is
    begin
       pragma Assert (Ekind (Id) = E_Access_Subprogram_Type);
-      Set_Node21 (Id, V);
+      Set_Node26 (Id, V);
    end Set_Original_Access_Type;
 
    procedure Set_Original_Array_Type (Id : E; V : E) is
@@ -8345,9 +8345,6 @@ package body Einfo is
          when Fixed_Point_Kind                             =>
             Write_Str ("Small_Value");
 
-         when E_Access_Subprogram_Type                     =>
-            Write_Str ("Original_Access_Type");
-
          when E_In_Parameter                               =>
             Write_Str ("Default_Expr_Function");
 
@@ -8550,6 +8547,9 @@ package body Einfo is
    procedure Write_Field26_Name (Id : Entity_Id) is
    begin
       case Ekind (Id) is
+         when E_Access_Subprogram_Type                     =>
+            Write_Str ("Original_Access_Type");
+
          when E_Generic_Package                            |
               E_Package                                    =>
             Write_Str ("Package_Instantiation");
index 0366dbeb604bccf49600520bcef0a09ad4f1da69..45dd3b4778f4d626caf6832d3f946901f7f56e49 100644 (file)
@@ -1911,12 +1911,13 @@ package Einfo is
 --       instantiations.
 
 --    Interface_Name (Node21)
---       Present in exceptions, functions, procedures, variables, constants,
---       and packages. Set to Empty unless an export, import, or interface
---       name pragma has explicitly specified an external name, in which
---       case it references an N_String_Literal node for the specified
---       external name. In the case of exceptions, the field is set by
---       Import_Exception/Export_Exception (which can be used in OpenVMS
+--       Present in constants, variables, exceptions, functions, procedures,
+--       packages, components (JGNAT only), discriminants (JGNAT only), and
+--       access to subprograms (JGNAT only). Set to Empty unless an export,
+--       import, or interface name pragma has explicitly specified an external
+--       name, in which case it references an N_String_Literal node for the
+--       specified external name. In the case of exceptions, the field is set
+--       by Import_Exception/Export_Exception (which can be used in OpenVMS
 --       versions only). Note that if this field is Empty, and Is_Imported
 --       or Is_Exported is set, then the default interface name is the name
 --       of the entity, cased in a manner that is appropriate to the system
@@ -3206,7 +3207,7 @@ package Einfo is
 --       Optimize_Alignment (Off) mode applies to the type/object, then neither
 --       of the flags Optimize_Alignment_Space/Optimize_Alignment_Time is set.
 
---    Original_Access_Type (Node21)
+--    Original_Access_Type (Node26)
 --       Present in E_Access_Subprogram_Type entities. Set only if the access
 --       type was generated by the expander as part of processing an access
 --       to protected subprogram type. Points to the access to protected
@@ -4882,8 +4883,9 @@ package Einfo is
    --  E_Access_Subprogram_Type
    --    Equivalent_Type                     (Node18)   (remote types only)
    --    Directly_Designated_Type            (Node20)
-   --    Original_Access_Type                (Node21)
+   --    Interface_Name                      (Node21)   (JGNAT usage only)
    --    Needs_No_Actuals                    (Flag22)
+   --    Original_Access_Type                (Node26)
    --    Can_Use_Internal_Rep                (Flag229)
    --    (plus type attributes)
 
@@ -5004,7 +5006,7 @@ package Einfo is
    --    Renamed_Object                      (Node18)
    --    Size_Check_Code                     (Node19)   (constants only)
    --    Prival_Link                         (Node20)   (privals only)
-   --    Interface_Name                      (Node21)
+   --    Interface_Name                      (Node21)   (constants only)
    --    Related_Type                        (Node27)   (constants only)
    --    Has_Alignment_Clause                (Flag46)
    --    Has_Atomic_Components               (Flag86)
index 1dc6205d68eb43d276cd775082462367011ab6f5..2f16fa79d0b0bf8c2d3a422107df3c2f9fc3eb83 100644 (file)
@@ -30,15 +30,15 @@ with Namet; use Namet;
 package Prepcomp is
 
    procedure Add_Dependencies;
-   --  Add dependencies on the preprocessing data file and the
-   --  preprocessing definition files, if any.
+   --  Add dependencies on the preprocessing data file and the preprocessing
+   --  definition files, if any.
 
    procedure Check_Symbols;
-   --  Check if there are preprocessing symbols on the command line and
-   --  set preprocessing if there are some: all files are preprocessed with
-   --  these symbols. This procedure should not be called if there is a
-   --  preprocessing data file specified on the command line. Procedure
-   --  Parse_Preprocessing_Data_File should be called instead.
+   --  Check if there are preprocessing symbols on the command line and set
+   --  preprocessing if there are some: all files are preprocessed with these
+   --  symbols. This procedure should not be called if there is a preprocessing
+   --  data file specified on the command line. Instead a call should be made
+   --  to Parse_Preprocessing_Data_File.
 
    procedure Parse_Preprocessing_Data_File (N : File_Name_Type);
    --  Parse a preprocessing data file, specified with a -gnatep= switch
@@ -46,10 +46,10 @@ package Prepcomp is
    procedure Prepare_To_Preprocess
      (Source               : File_Name_Type;
       Preprocessing_Needed : out Boolean);
-   --  Prepare, if necessary, the preprocessor for a source file.
-   --  If the source file needs to be preprocessed, Preprocessing_Needed
-   --  is set to True. Otherwise, Preprocessing_Needed is set to False
-   --  and no preprocessing needs to be done.
+   --  Prepare, if necessary, the preprocessor for a source file. If the source
+   --  file needs to be preprocessed, Preprocessing_Needed is set to True.
+   --  Otherwise, Preprocessing_Needed is set to False and no preprocessing
+   --  needs to be done.
 
    procedure Process_Command_Line_Symbol_Definitions;
    --  Check symbol definitions that have been added by calls to procedure
index e690c74cdaaa4a05e3e80d37d142927004b6bbd2..da925a788d3ca68a47107922e999b449a2674272 100644 (file)
@@ -234,8 +234,8 @@ package body System.Stack_Usage.Tasking is
 
    procedure Print (Obj : Stack_Usage_Result) is
       Pos : Positive := Obj.Task_Name'Last;
-   begin
 
+   begin
       --  Simply trim the string containing the task name
 
       for S in Obj.Task_Name'Range loop
@@ -246,8 +246,8 @@ package body System.Stack_Usage.Tasking is
       end loop;
 
       declare
-         T_Name : constant String := Obj.Task_Name
-                                       (Obj.Task_Name'First .. Pos);
+         T_Name : constant String :=
+                    Obj.Task_Name (Obj.Task_Name'First .. Pos);
       begin
          Put_Line
            ("| " & T_Name & " | " & Natural'Image (Obj.Max_Size) &
index 35f27bafcdc6eb4805c64420085d6f124007fd8d..f75f36e8e9535c5f48235faf248063f0b3c9e426 100644 (file)
@@ -4046,6 +4046,22 @@ package body Sem_Attr is
                Error_Attr;
             end if;
 
+            --  The attribute reference is a primary. If expressions follow,
+            --  the attribute reference is really an indexable object, so
+            --  rewrite and analyze as an indexed component.
+
+            if Present (E1) then
+               Rewrite (N,
+                 Make_Indexed_Component (Loc,
+                   Prefix      =>
+                     Make_Attribute_Reference (Loc,
+                       Prefix         => Relocate_Node (Prefix (N)),
+                       Attribute_Name => Name_Result),
+                   Expressions => Expressions (N)));
+               Analyze (N);
+               return;
+            end if;
+
             Set_Etype (N, Etype (CS));
 
             --  If several functions with that name are visible,
index 6517f70f6aeab3e6f4f273d4e6a80550da309d65..0001ddcef0ef9da4726a7ec29c6ab6b39697d6d9 100644 (file)
@@ -15156,7 +15156,10 @@ package body Sem_Ch3 is
 
          declare
             Max_Base_Digits : constant Uint :=
-               Expr_Value (Expression (Parent (RTE (RE_Max_Base_Digits))));
+                                Expr_Value
+                                  (Expression
+                                     (Parent (RTE (RE_Max_Base_Digits))));
+
          begin
             if Digs_Val > Max_Base_Digits then
                Error_Msg_Uint_1 := Max_Base_Digits;
@@ -17366,15 +17369,15 @@ package body Sem_Ch3 is
                                   Is_Constrained (Priv_Parent)
                                     or else
                                       Nkind (Priv_Indic) = N_Subtype_Indication
-                                        or else
-                                          Is_Constrained (Entity (Priv_Indic));
+                                    or else
+                                      Is_Constrained (Entity (Priv_Indic));
 
                   Full_Constr : constant Boolean :=
                                   Is_Constrained (Full_Parent)
                                     or else
                                       Nkind (Full_Indic) = N_Subtype_Indication
-                                        or else
-                                          Is_Constrained (Entity (Full_Indic));
+                                    or else
+                                      Is_Constrained (Entity (Full_Indic));
 
                   Priv_Discr : Entity_Id;
                   Full_Discr : Entity_Id;
@@ -17384,7 +17387,7 @@ package body Sem_Ch3 is
                   Full_Discr := First_Discriminant (Full_Parent);
                   while Present (Priv_Discr) and then Present (Full_Discr) loop
                      if Original_Record_Component (Priv_Discr) =
-                       Original_Record_Component (Full_Discr)
+                        Original_Record_Component (Full_Discr)
                        or else
                          Corresponding_Discriminant (Priv_Discr) =
                          Corresponding_Discriminant (Full_Discr)
index 6e218d26c42f73df00867d8e09c3691baa55dc47..1a5bdd40db2a2e3441652f5c78931ff659973671 100644 (file)
@@ -2008,11 +2008,10 @@ package body Sem_Ch5 is
                         return;
                      end;
 
-                  else
-
-                     --  Domain of iteration is not a function call, and is
-                     --  side-effect free.
+                  --  Domain of iteration is not a function call, and is
+                  --  side-effect free.
 
+                  else
                      Analyze (DS);
                   end if;
                end if;
@@ -2210,6 +2209,7 @@ package body Sem_Ch5 is
       then
          declare
             Id : constant Entity_Id := Make_Temporary (Loc, 'R', Container);
+
             Decl   : Node_Id;
             Assign : Node_Id;
 
@@ -2223,8 +2223,8 @@ package body Sem_Ch5 is
 
             Assign :=
               Make_Assignment_Statement (Loc,
-                 Name        => New_Occurrence_Of (Id, Loc),
-                 Expression  => Relocate_Node (Container));
+                Name        => New_Occurrence_Of (Id, Loc),
+                Expression  => Relocate_Node (Container));
 
             Insert_Actions (Parent (N), New_List (Decl, Assign));
          end;
index ec7c44c28c0c352fe7761e13b02475cc10d13afc..c2cb3d4cc69212ae625d05aec8547d768f181de4 100644 (file)
@@ -3865,15 +3865,17 @@ package body Sem_Prag is
 
       procedure Process_Import_Predefined_Type is
          Loc  : constant Source_Ptr := Sloc (N);
-         Elmt : Elmt_Id := First_Elmt (Predefined_Float_Types);
+         Elmt : Elmt_Id;
          Ftyp : Node_Id := Empty;
          Decl : Node_Id;
          Def  : Node_Id;
          Nam  : Name_Id;
+
       begin
          String_To_Name_Buffer (Strval (Expression (Arg3)));
          Nam := Name_Find;
 
+         Elmt := First_Elmt (Predefined_Float_Types);
          while Present (Elmt) and then Chars (Node (Elmt)) /= Nam loop
             Next_Elmt (Elmt);
          end loop;
@@ -3881,6 +3883,7 @@ package body Sem_Prag is
          Ftyp := Node (Elmt);
 
          if Present (Ftyp) then
+
             --  Don't build a derived type declaration, because predefined C
             --  types have no declaration anywhere, so cannot really be named.
             --  Instead build a full type declaration, starting with an
@@ -3893,8 +3896,9 @@ package body Sem_Prag is
                    Make_Real_Literal (Loc, Realval (Type_Low_Bound (Ftyp))),
                    Make_Real_Literal (Loc, Realval (Type_High_Bound (Ftyp)))));
 
+            --  Should never have a predefined type we cannot handle
+
             else
-               --  Should never have a predefined type we cannot handle
                raise Program_Error;
             end if;
 
index 00115cc44aa0ca53fcd85d0bd31a9348fd4c955e..f32e05274516e0e281d956586fb7459de4911da5 100644 (file)
@@ -5739,13 +5739,14 @@ package body Sem_Res is
 
       --  Commented out as the call to Is_Inherited_Operation_For_Type may
       --  cause an error because the type entity of the parent node of
-      --  Entity (Name (N) may not be set.
+      --  Entity (Name (N) may not be set. ???
+      --  So why not just add a guard ???
 
 --      if Nkind (N) = N_Function_Call
 --        and then Is_Tagged_Type (Etype (N))
 --        and then Is_Entity_Name (Name (N))
 --        and then Is_Inherited_Operation_For_Type
---         (Entity (Name (N)), Etype (N))
+--                   (Entity (Name (N)), Etype (N))
 --      then
 --         Check_Formal_Restriction ("function not inherited", N);
 --      end if;
index 02f6a6f46f68cae7f3f46e3c678fb71314a93388..dc98cc168f3356e5fea723b9b5d6d17ec4be5704 100644 (file)
@@ -832,13 +832,12 @@ package body Sem_Type is
         and then Is_Interface (Etype (T1))
         and then Is_Concurrent_Type (T2)
         and then Interface_Present_In_Ancestor
-                   (Typ   => BT2,
-                    Iface => Etype (T1))
+                   (Typ => BT2, Iface => Etype (T1))
       then
          return True;
 
       --  Ada 2005 (AI-251): A class-wide abstract interface type T1 covers an
-      --  object T2 implementing T1
+      --  object T2 implementing T1.
 
       elsif Ada_Version >= Ada_2005
         and then Is_Class_Wide_Type (T1)
index feddff824e5e33c8af5e463468b9e7dc92f57580..bddd50f3dc7582128cfd4813c98f80ec6710b936 100644 (file)
@@ -6750,7 +6750,7 @@ package body Sem_Util is
    -------------------------------------
 
    function Is_Inherited_Operation_For_Type
-     (E, Typ : Entity_Id) return Boolean
+     (E : Entity_Id; Typ : Entity_Id) return Boolean
    is
    begin
       return Is_Inherited_Operation (E)
@@ -7373,9 +7373,11 @@ package body Sem_Util is
    ----------------------------------
 
    function Is_SPARK_Initialization_Expr (N : Node_Id) return Boolean is
-      Is_Ok : Boolean;
+      Is_Ok     : Boolean;
+      Expr      : Node_Id;
+      Comp_Assn : Node_Id;
+      Choice    : Node_Id;
 
-      Expr, Comp_Assn, Choice : Node_Id;
    begin
       Is_Ok := True;
 
@@ -7476,7 +7478,7 @@ package body Sem_Util is
             Is_Ok := False;
       end case;
 
-      <<Done>>
+   <<Done>>
       return Is_Ok;
    end Is_SPARK_Initialization_Expr;
 
index 6803dfb9b661753b955bb194082e73d0e70b0d67..471c4a879ccb92b7526b8acc730b2574920b4fea 100644 (file)
@@ -734,8 +734,8 @@ package Sem_Util is
    --  if it is False (i.e. zero).
 
    function Is_Fixed_Model_Number (U : Ureal; T : Entity_Id) return Boolean;
-   --  Returns True iff the number U is a model number of the fixed-
-   --  point type T, i.e. if it is an exact multiple of Small.
+   --  Returns True iff the number U is a model number of the fixed-point type
+   --  T, i.e. if it is an exact multiple of Small.
 
    function Is_Fully_Initialized_Type (Typ : Entity_Id) return Boolean;
    --  Typ is a type entity. This function returns true if this type is fully
@@ -751,7 +751,7 @@ package Sem_Util is
    --  by a derived type declaration.
 
    function Is_Inherited_Operation_For_Type
-     (E, Typ : Entity_Id) return Boolean;
+     (E : Entity_Id; Typ : Entity_Id) return Boolean;
    --  E is a subprogram. Return True is E is an implicit operation inherited
    --  by the derived type declaration for type Typ.
 
index b9dac00655d7fe9cf999fa23fc0055354e68c9ca..dd5e9a795cc46209b6e22f92eb93bf3576450876 100644 (file)
@@ -229,8 +229,8 @@ package Stand is
    type Standard_Entity_Array_Type is array (Standard_Entity_Type) of Node_Id;
 
    Standard_Entity : Standard_Entity_Array_Type;
-   --  This array contains pointers to the Defining Identifier nodes for
-   --  each of the visible entities defined in Standard_Entities_Type. It is
+   --  This array contains pointers to the Defining Identifier nodes for each
+   --  of the visible entities defined in Standard_Entities_Type. The array is
    --  initialized by the Create_Standard procedure.
 
    Standard_Package_Node : Node_Id;
@@ -336,12 +336,12 @@ package Stand is
    --  carrying the enumeration literal names.
 
    Standard_A_Char : Entity_Id;
-   --  Access to character, used as a component of the exception type to
-   --  denote a thin pointer component.
+   --  Access to character, used as a component of the exception type to denote
+   --  a thin pointer component.
 
    Standard_Debug_Renaming_Type : Entity_Id;
-   --  A zero-size subtype of Integer, used as the type of variables used
-   --  to provide the debugger with name encodings for renaming declarations.
+   --  A zero-size subtype of Integer, used as the type of variables used to
+   --  provide the debugger with name encodings for renaming declarations.
 
    Predefined_Float_Types : Elist_Id;
    --  Entities for predefined floating point types. These are used by
@@ -395,9 +395,9 @@ package Stand is
    --  Used to represent some unknown integer type
 
    Any_Modular : Entity_Id;
-   --  Used to represent the result type of a boolean operation on an
-   --  integer literal. The result is not Universal_Integer, because it is
-   --  only legal in a modular context.
+   --  Used to represent the result type of a boolean operation on an integer
+   --  literal. The result is not Universal_Integer, because it is only legal
+   --  in a modular context.
 
    Any_Numeric : Entity_Id;
    --  Used to represent some unknown numeric type
@@ -409,10 +409,10 @@ package Stand is
    --  Used to represent some unknown scalar type
 
    Any_String : Entity_Id;
-   --  The type Any_String is used for string literals before type
-   --  resolution. It corresponds to array (Positive range <>) of character
-   --  where the component type is compatible with any character type,
-   --  not just Standard_Character.
+   --  The type Any_String is used for string literals before type resolution.
+   --  It corresponds to array (Positive range <>) of character where the
+   --  component type is compatible with any character type, not just
+   --  Standard_Character.
 
    Universal_Integer : Entity_Id;
    --  Entity for universal integer type. The bounds of this type correspond
@@ -438,9 +438,9 @@ package Stand is
    Standard_Integer_16 : Entity_Id;
    Standard_Integer_32 : Entity_Id;
    Standard_Integer_64 : Entity_Id;
-   --  These are signed integer types with the indicated sizes, They are
-   --  used for the underlying implementation types for fixed-point and
-   --  enumeration types.
+   --  These are signed integer types with the indicated sizes, They are used
+   --  for the underlying implementation types for fixed-point and enumeration
+   --  types.
 
    Standard_Unsigned : Entity_Id;
    --  An unsigned type of the same size as Standard_Integer
@@ -465,7 +465,7 @@ package Stand is
    --  initialization that is carried out by Create_Standard.
 
    procedure Tree_Write;
-   --  Writes out the entity values in this package to the current
-   --  tree file using Osint.Tree_Write.
+   --  Writes out the entity values in this package to the current tree file
+   --  using Osint.Tree_Write.
 
 end Stand;
index 177f53687b605815993b384ff614b1f78093cbe3..a5528810654b002338bbf11f5789a1e6e5da34a5 100644 (file)
@@ -82,8 +82,8 @@ package body Switch.C is
       end if;
 
       Preprocessing_Symbol_Last := Preprocessing_Symbol_Last + 1;
-      Preprocessing_Symbol_Defs (Preprocessing_Symbol_Last)
-         := new String'(Def);
+      Preprocessing_Symbol_Defs (Preprocessing_Symbol_Last) :=
+        new String'(Def);
    end Add_Symbol_Definition;
 
    -----------------------------
index a8327813ac6893e47e0675ac2c059863a113c3b4..2586d60493a2c3bf27c7be33f245e66d84a2ca06 100644 (file)
 ------------------------------------------------------------------------------
 
 --  This package scans front end switches. Note that the body of Usage must be
---  coordinated with the switches that are recognized by this package.
---  The Usage package also acts as the official documentation for the
---  switches that are recognized. In addition, package Debug documents
---  the otherwise undocumented debug switches that are also recognized.
+--  be coordinated with the switches that are recognized by this package.
+
+--  The Usage package also acts as the official documentation for the switches
+--  that are recognized. In addition, package Debug documents the otherwise
+--  undocumented debug switches that are also recognized.
 
 with System.Strings; use System.Strings;
 
index 1aa349294277268cd75c88fd9e3c2600c06e4825..f1449f8ef3fb217c758c9af36f0a47b9b3b5e865 100644 (file)
@@ -23,7 +23,7 @@
 --                                                                          --
 ------------------------------------------------------------------------------
 
---  This unit contains the routines used to handle setting of warning options.
+--  This unit contains the routines used to handle setting of warning options
 
 package Warnsw is