diff options
author | Emmanuel Briot <briot@adacore.com> | 2009-06-25 09:00:52 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-06-25 11:00:52 +0200 |
commit | 1d24fc5e45ad67dd6b622e79e3d5b254e05613dc (patch) | |
tree | 4c88206f35556d7b538fc30d6ef08065a3ef9f42 /gcc/ada/fmap.ads | |
parent | 8f2eeab7a7bf4562ba1ed32e51c879c756fb3193 (diff) | |
download | gcc-1d24fc5e45ad67dd6b622e79e3d5b254e05613dc.zip gcc-1d24fc5e45ad67dd6b622e79e3d5b254e05613dc.tar.gz gcc-1d24fc5e45ad67dd6b622e79e3d5b254e05613dc.tar.bz2 |
fmap.ads, [...] (Source_Data.Get_Object): Field removed, since it can be computed efficiently from the other fields.
2009-06-25 Emmanuel Briot <briot@adacore.com>
* fmap.ads, make.adb, prj.adb, prj.ads, prj-nmsc.adb, prj-env.adb,
prj-env.ads (Source_Data.Get_Object): Field removed, since it can be
computed efficiently from the other fields.
(Object_To_Global_Archive): New subprogram
(Create_Mapping): Remove unneeded call to Remove_Forbidden_File_Name.
(Override_Kind): Fix handling of separates in Ada.
(Create_Mapping_File): Remove duplicate code
(Naming_Data.Implementation_Exception, Specification_Exception):
field removed, since never used.
(Naming_Data.Specs, .Bodies): field removed, since this is only
used while processing the project and is not needed once the tree
is in memory. This brings Naming_Data and Lang_Naming_Data
closer (same content now, but different use still).
From-SVN: r148934
Diffstat (limited to 'gcc/ada/fmap.ads')
-rw-r--r-- | gcc/ada/fmap.ads | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/ada/fmap.ads b/gcc/ada/fmap.ads index 77c1a0e..fb781ce 100644 --- a/gcc/ada/fmap.ads +++ b/gcc/ada/fmap.ads @@ -31,6 +31,7 @@ -- following: -- For each source file, there are three lines in the mapping file: -- Unit name with %b or %s added depending on whether it is a body or a spec +-- This line is omitted for file-based languages -- File name -- Path name (set to '/' if the file should be ignored in fact, ie for -- a Locally_Removed_File in a project) |