aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/ali.ads
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2010-10-08 12:54:03 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2010-10-08 14:54:03 +0200
commit87003b285389a76fd9bb8a345a36ef2a9ebce0a1 (patch)
tree2a0cb37f03e0c50944d29b876561a756b303f1f9 /gcc/ada/ali.ads
parent0b89eea8926cb52d0b8c50b764a67572a9fde60d (diff)
downloadgcc-87003b285389a76fd9bb8a345a36ef2a9ebce0a1.zip
gcc-87003b285389a76fd9bb8a345a36ef2a9ebce0a1.tar.gz
gcc-87003b285389a76fd9bb8a345a36ef2a9ebce0a1.tar.bz2
ali.adb: Set Allocator_In_Body if AB parameter present on M line
2010-10-08 Robert Dewar <dewar@adacore.com> * ali.adb: Set Allocator_In_Body if AB parameter present on M line * ali.ads (Allocator_In_Body): New flag * bcheck.adb (Check_Consistent_Restrictions): Handle case of main program violating No_Allocators_After_Elaboration restriction. * gnatbind.adb (No_Restriction_List): Add entries for No_Anonymous_Allocators, and No_Allocators_After_Elaboration. * lib-load.adb: Initialize Has_Allocator flag * lib-writ.adb: Initialize Has_Allocator flag (M_Parameters): Set AB switch if Has_Allocator flag set * lib-writ.ads: Document AB flag on M line * lib.adb (Has_Allocator): New function (Set_Has_Allocator): New procedure * lib.ads (Has_Allocator): New function (Set_Has_Allocator): New procedure (Has_Allocator): New flag in Unit_Record * sem_ch4.adb (Analyze_Allocator): Add processing for No_Allocators_After_Elaboration. From-SVN: r165171
Diffstat (limited to 'gcc/ada/ali.ads')
-rw-r--r--gcc/ada/ali.ads6
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/ali.ads b/gcc/ada/ali.ads
index 74aeaed..062652c 100644
--- a/gcc/ada/ali.ads
+++ b/gcc/ada/ali.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2009, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2010, Free Software Foundation, Inc. --
-- --
-- GNAT is free software; you can redistribute it and/or modify it under --
-- terms of the GNU General Public License as published by the Free Soft- --
@@ -136,6 +136,10 @@ package ALI is
-- line. A value of -1 indicates that no T=xxx parameter was found, or
-- no M line was present. Not set if 'M' appears in Ignore_Lines.
+ Allocator_In_Body : Boolean;
+ -- Set True if an AB switch appears on the main program line. False
+ -- if no M line, or AB not present, or 'M appears in Ignore_Lines.
+
WC_Encoding : Character;
-- Wide character encoding if main procedure. Otherwise not relevant.
-- Not set if 'M' appears in Ignore_Lines.