diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-31 10:43:42 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-08-31 10:43:42 +0200 |
commit | 56812278e832fe969c443ca1835863f974e4b9d2 (patch) | |
tree | 61b9423513f189f83c625631b581033c832eb05c /gcc/ada/lib-xref.ads | |
parent | 7cda9727babdc93f846191782dcc4c0cdba25d26 (diff) | |
download | gcc-56812278e832fe969c443ca1835863f974e4b9d2.zip gcc-56812278e832fe969c443ca1835863f974e4b9d2.tar.gz gcc-56812278e832fe969c443ca1835863f974e4b9d2.tar.bz2 |
[multiple changes]
2011-08-31 Jose Ruiz <ruiz@adacore.com>
* s-taprop-linux.adb (Set_Task_Affinity): Avoid the use of anonymous
access types.
* affinity.c (__gnat_set_affinity_mask): Declare index variable.
2011-08-31 Yannick Moy <moy@adacore.com>
* sem_ch8.adb (Analyze_Subprogram_Renaming): Refine expander test in
full-expander test.
Minor reformatting, renaming ALFA in Alfa (we dropped acronym)
* einfo.adb (Primitive_Operations): Correctly return list of primitive
operations in a case where it returned previously No_Elist.
From-SVN: r178358
Diffstat (limited to 'gcc/ada/lib-xref.ads')
-rw-r--r-- | gcc/ada/lib-xref.ads | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/gcc/ada/lib-xref.ads b/gcc/ada/lib-xref.ads index e8a4f39..ecac26f 100644 --- a/gcc/ada/lib-xref.ads +++ b/gcc/ada/lib-xref.ads @@ -28,7 +28,7 @@ with Einfo; use Einfo; with Lib.Util; use Lib.Util; -with Put_ALFA; +with Put_Alfa; package Lib.Xref is @@ -582,13 +582,13 @@ package Lib.Xref is -- in the pragma is "there". ---------------------- - -- ALFA Information -- + -- Alfa Information -- ---------------------- - -- This package defines procedures for collecting ALFA information and + -- This package defines procedures for collecting Alfa information and -- printing in ALI files. - package ALFA is + package Alfa is function Enclosing_Subprogram_Or_Package (N : Node_Id) return Entity_Id; -- Return the closest enclosing subprogram of package @@ -610,17 +610,17 @@ package Lib.Xref is procedure Traverse_All_Compilation_Units (Process : Node_Processing); -- Call Process on all declarations through all compilation units - procedure Collect_ALFA (Sdep_Table : Unit_Ref_Table; Num_Sdep : Nat); - -- Collect ALFA information from library units (for files and scopes) + procedure Collect_Alfa (Sdep_Table : Unit_Ref_Table; Num_Sdep : Nat); + -- Collect Alfa information from library units (for files and scopes) -- and from cross-references. Fill in the tables in library package - -- called ALFA. + -- called Alfa. - procedure Output_ALFA is new Put_ALFA; - -- Output ALFA information to the ALI files, based on the information - -- collected in the tables in library package called ALFA, and using + procedure Output_Alfa is new Put_Alfa; + -- Output Alfa information to the ALI files, based on the information + -- collected in the tables in library package called Alfa, and using -- routines in Lib.Util. - end ALFA; + end Alfa; ----------------- -- Subprograms -- |