diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-14 08:45:05 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-08-14 08:45:05 +0000 |
commit | fcdc023a8715ff3e826cf73114712889e4319607 (patch) | |
tree | d0e7a73386d172b2419d7f2ead4f393e6d2ab8d5 /gcc/ada/lib-writ.adb | |
parent | 1229aa51302402029897d06bef1cface5f6c199f (diff) | |
download | gcc-fcdc023a8715ff3e826cf73114712889e4319607.tar.gz |
2007-08-14 Thomas Quinot <quinot@adacore.com>
Vincent Celier <celier@adacore.com>
* binde.adb (Elab_All_Links): Remove unnecessary call to
Generic_Separately_Compiled (if a unit satisfies this predicate, there
won't be an associated Afile).
(Elab_All_Links): Fail if a referenced unit cannot be found
* bindgen.adb:
Fix comments in bindgen regarding consistency checks done in Bcheck:
the checks are made across units within a partition, not across several
partitions.
Fix generation of C binder file for VxWorks.
* lib.adb (Generic_Separately_Compiled): Rename to
Generic_May_Lack_ALI, more descriptive of the current use of the
predicate, and update documentation.
* lib-writ.ads, lib-writ.adb (Write_With_Lines): Minor code
reorganization and documentation update for the case of predefined
library generics (for which we do not reference an Afile).
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@127439 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/lib-writ.adb')
-rw-r--r-- | gcc/ada/lib-writ.adb | 32 |
1 files changed, 17 insertions, 15 deletions
diff --git a/gcc/ada/lib-writ.adb b/gcc/ada/lib-writ.adb index d62b70d95af..661fc321260 100644 --- a/gcc/ada/lib-writ.adb +++ b/gcc/ada/lib-writ.adb @@ -376,11 +376,8 @@ package body Lib.Writ is Write_Info_Str (" DE"); end if; - -- We set the Elaborate_Body indication if either an explicit pragma - -- was present, or if this is an instantiation. RM 12.3(20) requires - -- that the body be immediately elaborated after the spec. We would - -- normally do that anyway, but the EB we generate here ensures that - -- this gets done even when we use the -p gnatbind switch. + -- Set the Elaborate_Body indication if either an explicit pragma + -- was present, or if this is an instantiation. if Has_Pragma_Elaborate_Body (Uent) or else (Ukind = N_Package_Declaration @@ -391,8 +388,8 @@ package body Lib.Writ is end if; -- Now see if we should tell the binder that an elaboration entity - -- is present, which must be reset to true during elaboration. We - -- generate the indication if the following condition is met: + -- is present, which must be set to true during elaboration. + -- We generate the indication if the following condition is met: -- If this is a spec ... @@ -630,7 +627,6 @@ package body Lib.Writ is Num_Withs : Int := 0; Unum : Unit_Number_Type; Cunit : Node_Id; - Cunite : Entity_Id; Uname : Unit_Name_Type; Fname : File_Name_Type; Pname : constant Unit_Name_Type := @@ -696,7 +692,6 @@ package body Lib.Writ is for J in 1 .. Num_Withs loop Unum := With_Table (J); Cunit := Units.Table (Unum).Cunit; - Cunite := Units.Table (Unum).Cunit_Entity; Uname := Units.Table (Unum).Unit_Name; Fname := Units.Table (Unum).Unit_File_Name; @@ -706,12 +701,19 @@ package body Lib.Writ is -- Now we need to figure out the names of the files that contain -- the with'ed unit. These will usually be the files for the body, - -- except in the case of a package that has no body. - - if (Nkind (Unit (Cunit)) not in N_Generic_Declaration - and then - Nkind (Unit (Cunit)) not in N_Generic_Renaming_Declaration) - or else Generic_Separately_Compiled (Cunite) + -- except in the case of a package that has no body. Note that we + -- have a specific exemption here for predefined library generics + -- (see comments for Generic_May_Lack_ALI). We do not generate + -- dependency upon the ALI file for such units. Older compilers + -- used to not support generating code (and ALI) for generics, and + -- we want to avoid having different processing (namely, different + -- lists of files to be compiled) for different stages of the + -- bootstrap. + + if not ((Nkind (Unit (Cunit)) in N_Generic_Declaration + or else + Nkind (Unit (Cunit)) in N_Generic_Renaming_Declaration) + and then Generic_May_Lack_ALI (Fname)) then Write_Info_Tab (25); |