diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-11-20 11:46:08 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2014-11-20 11:46:08 +0100 |
commit | 04e9213da79a04f1f87f1b15ed141a065b3d0185 (patch) | |
tree | e66f1a9b36e9aec397c157cffafca6655be5b276 /gcc/ada/prj.adb | |
parent | 8a23b1006359c176dcc6cfd0a6a7cabcf58687c7 (diff) | |
download | gcc-04e9213da79a04f1f87f1b15ed141a065b3d0185.zip gcc-04e9213da79a04f1f87f1b15ed141a065b3d0185.tar.gz gcc-04e9213da79a04f1f87f1b15ed141a065b3d0185.tar.bz2 |
[multiple changes]
2014-11-20 Eric Botcazou <ebotcazou@adacore.com>
* inline.adb (Analyze_Inlined_Bodies): Iterate between loading
of the inlined bodies and instantiation of the generic bodies
until no more bodies need to be loaded.
2014-11-20 Vincent Celier <celier@adacore.com>
* prj.adb, prj.ads, prj-conf.adb: Minor change of procedure name:
Update_Ignore_Missing_With becomes Set_Ignore_Missing_With.
From-SVN: r217831
Diffstat (limited to 'gcc/ada/prj.adb')
-rw-r--r-- | gcc/ada/prj.adb | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gcc/ada/prj.adb b/gcc/ada/prj.adb index 8a267cf..b696e2a 100644 --- a/gcc/ada/prj.adb +++ b/gcc/ada/prj.adb @@ -2147,16 +2147,17 @@ package body Prj is (Root_Project, Root_Tree, Project_Context'(False, False)); end For_Project_And_Aggregated_Context; - -------------------------------- - -- Update_Ignore_Missing_With -- - -------------------------------- + ----------------------------- + -- Set_Ignore_Missing_With -- + ----------------------------- - procedure Update_Ignore_Missing_With - (Flags : in out Processing_Flags; Value : Boolean) + procedure Set_Ignore_Missing_With + (Flags : in out Processing_Flags; + Value : Boolean) is begin Flags.Ignore_Missing_With := Value; - end Update_Ignore_Missing_With; + end Set_Ignore_Missing_With; -- Package initialization for Prj |