diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-09 10:39:19 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-09-09 10:39:19 +0000 |
commit | 483fc6a696616e6867d6ffc098465b529967b022 (patch) | |
tree | e46a62516e22d1da8b082783f8a39c0932d981ff /gcc/ada/binde.adb | |
parent | fc3d5f8865c2ae34913045460fc0c8a077209059 (diff) | |
download | gcc-483fc6a696616e6867d6ffc098465b529967b022.tar.gz |
2010-09-09 Vincent Celier <celier@adacore.com>
* prj-proc.adb: Minor comment spelling error fix.
* osint.ads (Env_Vars_Case_Sensitive): Use function
Get_Env_Vars_Case_Sensitive, not Get_File_Names_Case_Sensitive to
compute value.
2010-09-09 Ed Schonberg <schonberg@adacore.com>
* sem_res.adb (Resolve_Equality_Op): Implement Ada2012 rule for
resolution of conditional expressions whose dependent expressions are
anonymous access types.
2010-09-09 Robert Dewar <dewar@adacore.com>
* a-ststio.adb: Minor code reorganization.
* s-direio.adb, prj.adb, prj-nmsc.adb, sem_type.adb: Remove redundant
conversion.
* types.ads: Minor reformatting.
* binde.adb, vms_conv.adb, gnatls.adb, s-strxdr.adb, uintp.adb: Remove
redundant conversions.
* output.adb: Minor reformatting.
* sem_ch8.adb (Find_Type): Test for redundant base applies to user
types.
* opt.ads: Add pragma Ordered for Verbosity_Level.
* prj.ads: Add pragma Ordered for type Verbosity.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@164072 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/binde.adb')
-rw-r--r-- | gcc/ada/binde.adb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gcc/ada/binde.adb b/gcc/ada/binde.adb index f4681906df1..0dc65218644 100644 --- a/gcc/ada/binde.adb +++ b/gcc/ada/binde.adb @@ -614,7 +614,7 @@ package body Binde is Write_Str (" decrementing Num_Pred for unit "); Write_Unit_Name (Units.Table (U).Uname); Write_Str (" new value = "); - Write_Int (Int (UNR.Table (U).Num_Pred)); + Write_Int (UNR.Table (U).Num_Pred); Write_Eol; end if; @@ -1152,7 +1152,7 @@ package body Binde is Write_Str (" Elaborate_Body = True, Num_Pred for body = "); Write_Int - (Int (UNR.Table (Corresponding_Body (U)).Num_Pred)); + (UNR.Table (Corresponding_Body (U)).Num_Pred); else Write_Str (" Elaborate_Body = False"); @@ -1243,8 +1243,7 @@ package body Binde is goto Next_With; end if; - Withed_Unit := - Unit_Id (Unit_Id_Of (Withs.Table (W).Uname)); + Withed_Unit := Unit_Id_Of (Withs.Table (W).Uname); -- Pragma Elaborate_All case, for this we use the recursive -- Elab_All_Links procedure to establish the links. |