diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-10-14 15:39:16 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2013-10-14 15:39:16 +0200 |
commit | e74d643a35af630dde8a5fd9582b1c391fd022c4 (patch) | |
tree | e87125024e2e1c27c24e75512938bdfb58f824e1 /gcc/ada/sem_ch11.adb | |
parent | 9b2451e5b31bcea0398b5cb8574d516c97efa0f9 (diff) | |
download | gcc-e74d643a35af630dde8a5fd9582b1c391fd022c4.zip gcc-e74d643a35af630dde8a5fd9582b1c391fd022c4.tar.gz gcc-e74d643a35af630dde8a5fd9582b1c391fd022c4.tar.bz2 |
[multiple changes]
2013-10-14 Hristian Kirtchev <kirtchev@adacore.com>
* sem_prag.adb (Analyze_Dependency_Clause): Add new local variable
Non_Null_Output_Seen. Update the call to Analyze_Input_Output.
(Analyze_Input_Item): Streamline the detection mechanism of null and
non-null items.
(Analyze_Input_List): Add new local variable
Non_Null_Input_Seen. Update all calls to Analyze_Input_Output.
(Analyze_Input_Output): Add new formal parameter Non_Null_Seen
and update the related comment on usage. Update the
recursive call to itself. Attribute 'Result is now treated
as a non-null item. Detect mixes of null and non-null items.
(Analyze_Initialization_Item): Streamline the detection mechanism
of null and non-null items.
2013-10-14 Vincent Celier <celier@adacore.com>
* projects.texi: Add documentation for the new project level
attribute Library_Rpath_Options.
2013-10-14 Tristan Gingold <gingold@adacore.com>
* a-exexpr-gcc.adb (Set_Exception_Parameter): New procedure.
(Set_Foreign_Occurrence): New procedure, extracted from
Setup_Current_Excep.
* exp_ch11.adb (Expand_Exception_Handlers): Do not expand choice
parameter in case of zcx.
* sem_ch11.adb (Analyze_Exception_Handlers): Need debug info
for the choice parameter.
* raise-gcc.c: Add comments.
From-SVN: r203552
Diffstat (limited to 'gcc/ada/sem_ch11.adb')
-rw-r--r-- | gcc/ada/sem_ch11.adb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ada/sem_ch11.adb b/gcc/ada/sem_ch11.adb index c5b92e2..a397edf 100644 --- a/gcc/ada/sem_ch11.adb +++ b/gcc/ada/sem_ch11.adb @@ -199,6 +199,7 @@ package body Sem_Ch11 is if Comes_From_Source (Choice) then Check_Restriction (No_Exception_Propagation, Choice); + Set_Debug_Info_Needed (Choice); end if; if No (H_Scope) then |