diff options
author | Geert Bosch <bosch@gcc.gnu.org> | 2001-12-12 00:01:00 +0100 |
---|---|---|
committer | Geert Bosch <bosch@gcc.gnu.org> | 2001-12-12 00:01:00 +0100 |
commit | 7fb754a1ad3d542eca7724a944fa54e8bebbbff4 (patch) | |
tree | 11d29e57da04b303a82bfe15ecbabc386ef4ea29 /gcc/ada/prj.ads | |
parent | 0873bafcaa07ec24cc51e2bced0458252b5d028e (diff) | |
download | gcc-7fb754a1ad3d542eca7724a944fa54e8bebbbff4.tar.gz |
freeze.adb: Make Freeze_Fixed_Point_Type visible, for use in sem_attr.
* freeze.adb: Make Freeze_Fixed_Point_Type visible, for use in
sem_attr.
* sem_attr.adb: Simplify previous fix for Address.
(Set_Bounds): If prefix is a non-frozen fixed-point type, freeze now,
to avoid anomalies where the bound of the type appears to raise
constraint error.
* lib-xref.adb (Output_Refs): Make sure pointers are always properly
handled.
* sem_ch12.adb (Analyze_Subprogram_Instantiation): Check for a
renamed unit before checking for recursive instantiations.
* prj.ads: Add comments for some of the fields.
From-SVN: r47902
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index 2eeb5a03c74..d4b47784445 100644 --- a/gcc/ada/prj.ads +++ b/gcc/ada/prj.ads @@ -86,7 +86,8 @@ package Prj is Value : String_Id := No_String; end case; end record; - -- Values for variables and array elements + -- Values for variables and array elements. + -- Default is True if the current value is the default one for the variable Nil_Variable_Value : constant Variable_Value := (Kind => Undefined, @@ -383,10 +384,14 @@ package Prj is Include_Path : String_Access := null; -- The cached value of ADA_INCLUDE_PATH for this project file. -- Set by gnatmake (prj.Env.Set_Ada_Paths). + -- Do not use this field directly outside of the compiler, use + -- Prj.Env.Ada_Source_Path instead. Objects_Path : String_Access := null; -- The cached value of ADA_OBJECTS_PATH for this project file. -- Set by gnatmake (prj.Env.Set_Ada_Paths). + -- Do not use this field directly outside of the compiler, use + -- Prj.Env.Ada_Source_Path instead. Config_File_Name : Name_Id := No_Name; -- The name of the configuration pragmas file, if any. |