diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-16 13:19:37 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-04-16 13:19:37 +0000 |
commit | e239bda8a289bbae40246dd2fb918e959a39e3f5 (patch) | |
tree | 1e53df1d761fd3399a414a384940819f1d926a31 /gcc/ada/bindgen.adb | |
parent | e16288b4a39e53823d38ca7b17f97be364101d55 (diff) | |
download | gcc-e239bda8a289bbae40246dd2fb918e959a39e3f5.tar.gz |
2009-04-16 Robert Dewar <dewar@adacore.com>
* g-pehage.adb: Minor reformatting
* sem_ch12.adb: Minor reformatting
* exp_dist.adb: Minor reformatting
* bindgen.adb: Minor style fixes.
2009-04-16 Ed Schonberg <schonberg@adacore.com>
* sem_eval.adb (Eval_Indexed_Component): Extend constant-folding of
indexed components to the case where the prefix is a static string
literal.
2009-04-16 Javier Miranda <miranda@adacore.com>
* exp_ch3.adb (Expand_N_Object_Declaration): In case of build-in-place
objects avoid any further expansion of the expression initializing the
object.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@146189 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/bindgen.adb')
-rw-r--r-- | gcc/ada/bindgen.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/bindgen.adb b/gcc/ada/bindgen.adb index cc4c6ddfa5d..ce81c7ae005 100644 --- a/gcc/ada/bindgen.adb +++ b/gcc/ada/bindgen.adb @@ -2273,7 +2273,7 @@ package body Bindgen is -- If the standard library is not suppressed, these variables -- are in the runtime data area for easy access from the - -- runtime + -- runtime. if not Suppress_Standard_Library_On_Target then WBI (""); @@ -2510,7 +2510,7 @@ package body Bindgen is Gen_Adainit_Ada; - -- Generate the adafinal routine unless there is no finalization to do. + -- Generate the adafinal routine unless there is no finalization to do if not Cumulative_Restrictions.Set (No_Finalization) then Gen_Adafinal_Ada; |