diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-31 08:43:42 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-08-31 08:43:42 +0000 |
commit | f84c0da6b775eba9eb8d79fadce24169cf11f1f3 (patch) | |
tree | 61b9423513f189f83c625631b581033c832eb05c /gcc/ada/lib-writ.adb | |
parent | 83a0ab2a2fd2930fe97279844d6999d51a8b0d94 (diff) | |
download | gcc-f84c0da6b775eba9eb8d79fadce24169cf11f1f3.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@178358 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/lib-writ.adb')
-rw-r--r-- | gcc/ada/lib-writ.adb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/ada/lib-writ.adb b/gcc/ada/lib-writ.adb index 64ec01166b1..bd236ea4250 100644 --- a/gcc/ada/lib-writ.adb +++ b/gcc/ada/lib-writ.adb @@ -32,7 +32,7 @@ with Fname; use Fname; with Fname.UF; use Fname.UF; with Lib.Util; use Lib.Util; with Lib.Xref; use Lib.Xref; - use Lib.Xref.ALFA; + use Lib.Xref.Alfa; with Nlists; use Nlists; with Gnatvsn; use Gnatvsn; with Opt; use Opt; @@ -1317,11 +1317,11 @@ package body Lib.Writ is SCO_Output; end if; - -- Output ALFA information if needed + -- Output Alfa information if needed - if Opt.Xref_Active and then ALFA_Mode then - Collect_ALFA (Sdep_Table => Sdep_Table, Num_Sdep => Num_Sdep); - Output_ALFA; + if Opt.Xref_Active and then Alfa_Mode then + Collect_Alfa (Sdep_Table => Sdep_Table, Num_Sdep => Num_Sdep); + Output_Alfa; end if; -- Output final blank line and we are done. This final blank line is |