diff options
author | Thomas Quinot <quinot@adacore.com> | 2008-08-05 08:34:58 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-08-05 10:34:58 +0200 |
commit | 99e81db6df93386ba6d1ed7c2e6d9f504c81cace (patch) | |
tree | 86a8cf5025b337458f59e863eea80a6a2f8a3788 /gcc/ada/sem_ch12.adb | |
parent | 3894140f5b2e9072bb8ae6b51277ad67b7f3bda1 (diff) | |
download | gcc-99e81db6df93386ba6d1ed7c2e6d9f504c81cace.zip gcc-99e81db6df93386ba6d1ed7c2e6d9f504c81cace.tar.gz gcc-99e81db6df93386ba6d1ed7c2e6d9f504c81cace.tar.bz2 |
exp_strm.adb: Minor reformatting (comments)
2008-08-05 Thomas Quinot <quinot@adacore.com>
* exp_strm.adb: Minor reformatting (comments)
* sem_ch12.adb: Minor reformatting.
From-SVN: r138674
Diffstat (limited to 'gcc/ada/sem_ch12.adb')
-rw-r--r-- | gcc/ada/sem_ch12.adb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/sem_ch12.adb b/gcc/ada/sem_ch12.adb index a4abddf..147a097 100644 --- a/gcc/ada/sem_ch12.adb +++ b/gcc/ada/sem_ch12.adb @@ -8366,8 +8366,8 @@ package body Sem_Ch12 is Defining_Identifier => New_Copy (Formal_Id), Constant_Present => True, Object_Definition => New_Copy (Def), - Expression => New_Copy_Tree (Default_Expression - (Formal))); + Expression => New_Copy_Tree + (Default_Expression (Formal))); Append (Decl_Node, List); Set_Analyzed (Expression (Decl_Node), False); @@ -8398,9 +8398,9 @@ package body Sem_Ch12 is Constant_Present => True, Object_Definition => New_Copy (Def), Expression => - Make_Attribute_Reference (Sloc (Formal_Id), - Attribute_Name => Name_First, - Prefix => New_Copy (Def))); + Make_Attribute_Reference (Sloc (Formal_Id), + Attribute_Name => Name_First, + Prefix => New_Copy (Def))); Append (Decl_Node, List); |