sem_ch10.adb, [...]: Minor reformatting.
authorThomas Quinot <quinot@adacore.com>
Thu, 11 Apr 2013 13:26:06 +0000 (13:26 +0000)
committerArnaud Charlet <charlet@gcc.gnu.org>
Thu, 11 Apr 2013 13:26:06 +0000 (15:26 +0200)
2013-04-11  Thomas Quinot  <quinot@adacore.com>

* sem_ch10.adb, sem_ch12.adb: Minor reformatting.

From-SVN: r197793

gcc/ada/ChangeLog
gcc/ada/sem_ch10.adb
gcc/ada/sem_ch12.adb

index 3e584e9a6f16ceed03963f33df577218007f3800..272852450ec686065ad14f969a30db457202ff4a 100644 (file)
@@ -1,3 +1,7 @@
+2013-04-11  Thomas Quinot  <quinot@adacore.com>
+
+       * sem_ch10.adb, sem_ch12.adb: Minor reformatting.
+
 2013-04-11  Robert Dewar  <dewar@adacore.com>
 
        * exp_attr.adb, sem_res.adb, sem_attr.adb: Minor reformatting.
index a4241afabd71ecede067132b1bb738dfded5c4d1..0623206970217b6e71db586ae74c6dbd2aafefa7 100644 (file)
@@ -79,8 +79,8 @@ package body Sem_Ch10 is
    --  Build and decorate the list of shadow entities for a package mentioned
    --  in a limited_with clause. If the package was not previously analyzed
    --  then it also performs a basic decoration of the real entities. This is
-   --  required to do not pass non-decorated entities to the back-end.
-   --  Implements Ada 2005 (AI-50217).
+   --  required in order to avoid passing non-decorated entities to the
+   --  back-end. Implements Ada 2005 (AI-50217).
 
    procedure Check_Body_Needed_For_SAL (Unit_Name : Entity_Id);
    --  Check whether the source for the body of a compilation unit must be
index 3f8abe7f58c8efaadd23da7e19900e902d390b38..d04ef4652fa44065f39a546ebd54f8be1329f8e1 100644 (file)
@@ -4966,8 +4966,7 @@ package body Sem_Ch12 is
         Make_Compilation_Unit (Sloc (N),
           Context_Items  => Empty_List,
           Unit           => Act_Decl,
-          Aux_Decls_Node =>
-            Make_Compilation_Unit_Aux (Sloc (N)));
+          Aux_Decls_Node => Make_Compilation_Unit_Aux (Sloc (N)));
 
       Set_Parent_Spec   (Act_Decl, Parent_Spec (N));
 
@@ -4984,8 +4983,8 @@ package body Sem_Ch12 is
 
       --  The two compilation unit nodes are linked by the Library_Unit field
 
-      Set_Library_Unit  (Decl_Cunit, Body_Cunit);
-      Set_Library_Unit  (Body_Cunit, Decl_Cunit);
+      Set_Library_Unit (Decl_Cunit, Body_Cunit);
+      Set_Library_Unit (Body_Cunit, Decl_Cunit);
 
       --  Preserve the private nature of the package if needed
 
@@ -5043,8 +5042,7 @@ package body Sem_Ch12 is
    procedure Check_Access_Definition (N : Node_Id) is
    begin
       pragma Assert
-        (Ada_Version >= Ada_2005
-           and then Present (Access_Definition (N)));
+        (Ada_Version >= Ada_2005 and then Present (Access_Definition (N)));
       null;
    end Check_Access_Definition;