diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-12-23 10:36:49 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-12-23 10:36:49 +0100 |
commit | a17e8c059369ccc8a65fef8bdc33af01fb3da864 (patch) | |
tree | ac173532856e499f071301288be35fa355582b5c /gcc/ada/ChangeLog | |
parent | 7471389a77a42e571105fc0b03738a1c3e4ca50d (diff) | |
download | gcc-a17e8c059369ccc8a65fef8bdc33af01fb3da864.zip gcc-a17e8c059369ccc8a65fef8bdc33af01fb3da864.tar.gz gcc-a17e8c059369ccc8a65fef8bdc33af01fb3da864.tar.bz2 |
[multiple changes]
2011-12-23 Pascal Obry <obry@adacore.com>
* prj.ads (For_Every_Project_Imported): Add In_Aggregate_Lib
parameter to generic formal procedure.
* prj.adb (For_Every_Project_Imported): Update accordingly.
(Recursive_Check): Likewise. Do not parse imported project for
aggregate library. This is needed as the imported projects are
there just to handle dependencies.
(Look_For_Sources): Likewise.
(Recursive_Add): Likewise.
* prj-env.adb, prj-conf.adb, makeutl.adb, gnatcmd.adb:
Add In_Aggregate_Lib parameter to routines used with
For_Every_Project_Imported generic procedure.
* prj-nmsc.adb (Tree_Processing_Data): Add In_Aggregate_Lib field.
(Check): Move where it is used. Fix implementation
to not check libraries that are inside aggregate libraries.
(Recursive_Check): Add In_Aggregate_Lib parameter.
2011-12-23 Ed Schonberg <schonberg@adacore.com>
* sem_ch7.adb (Analyze_Package_Body, Has_Referencer): A generic
package is a referencer regardless of whether there is a
subsequent subprogram with an Inline pragma.
2011-12-23 Geert Bosch <bosch@adacore.com>
* sem_ch3.adb (Can_Derive_From): Check matching Float_Rep on VMS.
From-SVN: r182656
Diffstat (limited to 'gcc/ada/ChangeLog')
-rw-r--r-- | gcc/ada/ChangeLog | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index c8e27d2..37f011b 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,5 +1,33 @@ 2011-12-23 Pascal Obry <obry@adacore.com> + * prj.ads (For_Every_Project_Imported): Add In_Aggregate_Lib + parameter to generic formal procedure. + * prj.adb (For_Every_Project_Imported): Update accordingly. + (Recursive_Check): Likewise. Do not parse imported project for + aggregate library. This is needed as the imported projects are + there just to handle dependencies. + (Look_For_Sources): Likewise. + (Recursive_Add): Likewise. + * prj-env.adb, prj-conf.adb, makeutl.adb, gnatcmd.adb: + Add In_Aggregate_Lib parameter to routines used with + For_Every_Project_Imported generic procedure. + * prj-nmsc.adb (Tree_Processing_Data): Add In_Aggregate_Lib field. + (Check): Move where it is used. Fix implementation + to not check libraries that are inside aggregate libraries. + (Recursive_Check): Add In_Aggregate_Lib parameter. + +2011-12-23 Ed Schonberg <schonberg@adacore.com> + + * sem_ch7.adb (Analyze_Package_Body, Has_Referencer): A generic + package is a referencer regardless of whether there is a + subsequent subprogram with an Inline pragma. + +2011-12-23 Geert Bosch <bosch@adacore.com> + + * sem_ch3.adb (Can_Derive_From): Check matching Float_Rep on VMS. + +2011-12-23 Pascal Obry <obry@adacore.com> + * gnatcmd.adb, prj.adb, prj-nmsc.adb: Minor reformatting. 2011-12-22 Hristian Kirtchev <kirtchev@adacore.com> |