From: Thomas Quinot Date: Thu, 11 Apr 2013 13:26:06 +0000 (+0000) Subject: sem_ch10.adb, [...]: Minor reformatting. X-Git-Tag: releases/gcc-4.9.0~6511 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=327900c7f5b09f16f9199a425d96c93a2c73cc93;p=thirdparty%2Fgcc.git sem_ch10.adb, [...]: Minor reformatting. 2013-04-11 Thomas Quinot * sem_ch10.adb, sem_ch12.adb: Minor reformatting. From-SVN: r197793 --- diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 3e584e9a6f16..272852450ec6 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,7 @@ +2013-04-11 Thomas Quinot + + * sem_ch10.adb, sem_ch12.adb: Minor reformatting. + 2013-04-11 Robert Dewar * exp_attr.adb, sem_res.adb, sem_attr.adb: Minor reformatting. diff --git a/gcc/ada/sem_ch10.adb b/gcc/ada/sem_ch10.adb index a4241afabd71..062320697021 100644 --- a/gcc/ada/sem_ch10.adb +++ b/gcc/ada/sem_ch10.adb @@ -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 diff --git a/gcc/ada/sem_ch12.adb b/gcc/ada/sem_ch12.adb index 3f8abe7f58c8..d04ef4652fa4 100644 --- a/gcc/ada/sem_ch12.adb +++ b/gcc/ada/sem_ch12.adb @@ -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;