diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-03 09:21:55 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-03 09:21:55 +0000 |
commit | 550b60cd430a0869547576ee62b7774c9c7e213e (patch) | |
tree | 3725855258e586f8b68daed8cfdfe5efa06f8cf7 /gcc/ada/prj-proc.adb | |
parent | 132f079abbcfa82c414832aad3aedfe77f2049f6 (diff) | |
download | gcc-550b60cd430a0869547576ee62b7774c9c7e213e.tar.gz |
2011-08-03 Emmanuel Briot <briot@adacore.com>
* prj-part.adb, prj-part.ads, prj-makr.adb, prj-pars.adb, prj-conf.adb,
prj-env.adb (Prj.Part.Parse): change parameter Always_Errout_Finalize
to Errout_Handling.
2011-08-03 Emmanuel Briot <briot@adacore.com>
* prj-dect.adb (Parse_Attribute_Declaration): make sure we can use
"external" as an attribute name in aggregate projects.
2011-08-03 Jose Ruiz <ruiz@adacore.com>
* s-taprop-vxworks.adb: (Create_Task, Initialize): Ada 2012 pragma CPU
uses CPU numbers starting 1, while VxWorks uses CPU numbers starting
from 0, so we need to adjust.
2011-08-03 Emmanuel Briot <briot@adacore.com>
* prj-proc.adb, prj-ext.adb, prj-ext.ads, makeutl.adb, prj-tree.adb,
prj-tree.ads, gnatcmd.adb, clean.adb (External_References): new type.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@177244 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/prj-proc.adb')
-rw-r--r-- | gcc/ada/prj-proc.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/ada/prj-proc.adb b/gcc/ada/prj-proc.adb index ddab4362fd8..1a94e71d85b 100644 --- a/gcc/ada/prj-proc.adb +++ b/gcc/ada/prj-proc.adb @@ -1065,7 +1065,7 @@ package body Prj.Proc is if Ext_List then Value := Prj.Ext.Value_Of - (From_Project_Node_Tree, Name, No_Name); + (From_Project_Node_Tree.External, Name, No_Name); if Value /= No_Name then declare @@ -1171,7 +1171,7 @@ package body Prj.Proc is Value := Prj.Ext.Value_Of - (From_Project_Node_Tree, Name, Default); + (From_Project_Node_Tree.External, Name, Default); if Value = No_Name then if not Quiet_Output then |