aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/opt.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2011-08-31 10:43:42 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2011-08-31 10:43:42 +0200
commit56812278e832fe969c443ca1835863f974e4b9d2 (patch)
tree61b9423513f189f83c625631b581033c832eb05c /gcc/ada/opt.adb
parent7cda9727babdc93f846191782dcc4c0cdba25d26 (diff)
downloadgcc-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/opt.adb')
-rw-r--r--gcc/ada/opt.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/opt.adb b/gcc/ada/opt.adb
index ce7237a..809816d 100644
--- a/gcc/ada/opt.adb
+++ b/gcc/ada/opt.adb
@@ -44,7 +44,7 @@ package body Opt is
function Full_Expander_Active return Boolean is
begin
- return Expander_Active and not ALFA_Mode;
+ return Expander_Active and not Alfa_Mode;
end Full_Expander_Active;
----------------------------------