diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2012-06-12 12:12:40 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2012-06-12 12:12:40 +0200 |
commit | 3235dc87bf6bbe42b58a40f0d894283997e3100c (patch) | |
tree | 89eee6cf718fed8243d56f373857da26fb54ad6d /gcc/ada/xref_lib.adb | |
parent | 83bb90af7af5df4179c85586409efe342d655b90 (diff) | |
download | gcc-3235dc87bf6bbe42b58a40f0d894283997e3100c.zip gcc-3235dc87bf6bbe42b58a40f0d894283997e3100c.tar.gz gcc-3235dc87bf6bbe42b58a40f0d894283997e3100c.tar.bz2 |
[multiple changes]
2012-06-12 Hristian Kirtchev <kirtchev@adacore.com>
* exp_ch7.adb (Create_Finalizer): Add the
exception reraise mechanism at the very end of the finalizer
statements. This placement ensures that all objects are finalized,
the secondary stack mark released and aborts undeferred before
propagating an exception.
2012-06-12 Ed Schonberg <schonberg@adacore.com>
* sem_ch10.adb (Remove_Unit_From_Visibility): if the unit is a
wrapper package. remove from visibility the original subprogram
instance.
2012-06-12 Javier Miranda <miranda@adacore.com>
* sem_prag.adb (Process_Convention): Generate reference to entity
exported to foreign language. Needed for GPS navigation.
* xref_lib.adb (Parse_Identifier_Info): Parse exported entities.
* lib-xref (Output_References): Output exported entities.
2012-06-12 Pascal Obry <obry@adacore.com>
* prj-attr.adb: Add install package and corresponding attributes.
* snames.ads-tmpl (Name_Active): New constant.
(Name_Exec_Subdir): Likewise.
(Name_Install): Likewise.
(Name_Lib_Subdir): Likewise.
(Name_Project_Subdir): Likewise.
(Name_Sources_Subdir): Likewise.
2012-06-12 Bob Duff <duff@adacore.com>
* sem_res.adb (Check_Infinite_Recursion):
Suppress spurious warning on recursion after "raise with ...".
From-SVN: r188438
Diffstat (limited to 'gcc/ada/xref_lib.adb')
-rw-r--r-- | gcc/ada/xref_lib.adb | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gcc/ada/xref_lib.adb b/gcc/ada/xref_lib.adb index 9db1643..4ff1cdc 100644 --- a/gcc/ada/xref_lib.adb +++ b/gcc/ada/xref_lib.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1998-2011, Free Software Foundation, Inc. -- +-- Copyright (C) 1998-2012, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -1105,9 +1105,10 @@ package body Xref_Lib is -- Imported entities might special indication as to their external -- name: - -- 5U14*Foo2 5>20 6b<c,myfoo2>22 + -- 5U14*Foo2 5>20 6b<c,myfoo2>22 # Imported entity + -- 5U14*Foo2 5>20 6i<c,myfoo2>22 # Exported entity - if R_Type = 'b' + if (R_Type = 'b' or else R_Type = 'i') and then Ali (Ptr) = '<' then while Ptr <= Ali'Last |