diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-14 12:09:30 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-14 12:09:30 +0200 |
commit | a5d83d61416423fd29146e2743e2d68a467131b8 (patch) | |
tree | 35b9368d0b998fbaf7bbcf8ec4e412bbf25e9bac /gcc/ada/opt.ads | |
parent | be8e26ba4e36a447fea9fa0f3e842dddd7c23e14 (diff) | |
download | gcc-a5d83d61416423fd29146e2743e2d68a467131b8.zip gcc-a5d83d61416423fd29146e2743e2d68a467131b8.tar.gz gcc-a5d83d61416423fd29146e2743e2d68a467131b8.tar.bz2 |
[multiple changes]
2010-06-14 Robert Dewar <dewar@adacore.com>
* opt.ads, sem.adb, sem_elab.adb: Minor reformatting
2010-06-14 Robert Dewar <dewar@adacore.com>
* exp_aggr.adb (Has_Address_Clause): Moved to Exp_Util, and there it
is renamed as Has_Following_Address_Clause.
* exp_ch3.adb (Needs_Simple_Initialization): Add Consider_IS argument
to allow the caller to avoid Initialize_Scalars having an effect.
(Expand_N_Object_Declaration): Do not do Initialize_Scalars stuff for
scalars with an address clause specified.
* exp_ch3.ads (Needs_Simple_Initialization): Add Consider_IS argument
to allow the caller to avoid Initialize_Scalars having an effect.
* exp_util.adb (Has_Following_Address_Clause): Moved here from Exp_Aggr
(where it was called Has_Address_Clause).
* exp_util.ads (Has_Following_Address_Clause): Moved here from Exp_Aggr
(where it was called Has_Address_Clause).
* freeze.adb (Warn_Overlay): Suppress message about overlaying causing
problems for Initialize_Scalars (since we no longer initialize objects
with an address clause.
2010-06-14 Robert Dewar <dewar@adacore.com>
* exp_prag.adb (Expand_Pragma_Check): Set Loc of generated code from
condition.
2010-06-14 Gary Dismukes <dismukes@adacore.com>
* sem_ch6.adb (Analyze_Subprogram_Body_Helper): Set Debug_Info_Needed
on the entity of an implicitly generated postcondition procedure.
2010-06-14 Thomas Quinot <quinot@adacore.com>
* sem_ch7.adb (Preserve_Full_Attributes): Propagate
Discriminant_Constraint elist from full view to private view.
From-SVN: r160720
Diffstat (limited to 'gcc/ada/opt.ads')
-rw-r--r-- | gcc/ada/opt.ads | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/opt.ads b/gcc/ada/opt.ads index 9013d7d..4581116 100644 --- a/gcc/ada/opt.ads +++ b/gcc/ada/opt.ads @@ -183,8 +183,8 @@ package Opt is Bind_For_Library : Boolean := False; -- GNATBIND - -- Set to True if the binder needs to generate a file designed for - -- building a library. May be set to True by Gnatbind.Scan_Bind_Arg. + -- Set to True if the binder needs to generate a file designed for building + -- a library. May be set to True by Gnatbind.Scan_Bind_Arg. Bind_Only : Boolean := False; -- GNATMAKE, GPRMAKE, GPRBUILD |