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.adb | |
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.adb')
-rw-r--r-- | gcc/ada/lib-xref.adb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/lib-xref.adb b/gcc/ada/lib-xref.adb index b280ce5..4bc7ed4 100644 --- a/gcc/ada/lib-xref.adb +++ b/gcc/ada/lib-xref.adb @@ -81,7 +81,7 @@ package body Lib.Xref is -- Unit number corresponding to Loc. Value is undefined and not -- referenced if Loc is set to No_Location. - -- The following components are only used for ALFA cross-references + -- The following components are only used for Alfa cross-references Ref_Scope : Entity_Id; -- Entity of the closest subprogram or package enclosing the reference @@ -103,10 +103,10 @@ package body Lib.Xref is Table_Name => "Xrefs"); ---------------------- - -- ALFA Information -- + -- Alfa Information -- ---------------------- - package body ALFA is separate; + package body Alfa is separate; ------------------------ -- Local Subprograms -- @@ -865,8 +865,8 @@ package body Lib.Xref is Ref := Original_Location (Sloc (Nod)); Def := Original_Location (Sloc (Ent)); - Ref_Scope := ALFA.Enclosing_Subprogram_Or_Package (N); - Ent_Scope := ALFA.Enclosing_Subprogram_Or_Package (Ent); + Ref_Scope := Alfa.Enclosing_Subprogram_Or_Package (N); + Ent_Scope := Alfa.Enclosing_Subprogram_Or_Package (Ent); Xrefs.Increment_Last; Indx := Xrefs.Last; |