aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/prj.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-10-18 12:18:07 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-10-18 12:18:07 +0200
commite57ab5507b20632ae70b0ce192cbeca049133a1a (patch)
treee04e4d582f301e695971081ecc83be8cd8ed59e1 /gcc/ada/prj.ads
parent468ee96a95a470c06e0f646f0a7c83b189b7fbe6 (diff)
downloadgcc-e57ab5507b20632ae70b0ce192cbeca049133a1a.zip
gcc-e57ab5507b20632ae70b0ce192cbeca049133a1a.tar.gz
gcc-e57ab5507b20632ae70b0ce192cbeca049133a1a.tar.bz2
[multiple changes]
2010-10-18 Vincent Celier <celier@adacore.com> * prj.ads (Source_Data): New Boolean flag In_The_Queue. 2010-10-18 Tristan Gingold <gingold@adacore.com> * s-stausa.ads: Add the Top parameter to Initialize_Analyzer. * s-stausa.adb: Use the top parameter. In Fill_Stack, use the stack top if known. * s-tassta.adb (Task_Wrapper): Call Initialize_Analyzer after Enter_Task so that Pri_Stack_Info.Limit can be set and used. 2010-10-18 Robert Dewar <dewar@adacore.com> * einfo.ads: Minor reformatting. * sem_res.adb (Resolve_Allocator): Add test for violating No_Anonymous_Allocators. From-SVN: r165624
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r--gcc/ada/prj.ads4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads
index dd3c981..ccf0853 100644
--- a/gcc/ada/prj.ads
+++ b/gcc/ada/prj.ads
@@ -710,6 +710,9 @@ package Prj is
-- Updated at the first call to Is_Compilable. Yes if source file is
-- compilable.
+ In_The_Queue : Boolean := False;
+ -- True if the source has been put in the queue
+
Locally_Removed : Boolean := False;
-- True if the source has been "excluded"
@@ -793,6 +796,7 @@ package Prj is
Index => 0,
Locally_Removed => False,
Compilable => Unknown,
+ In_The_Queue => False,
Replaced_By => No_Source,
File => No_File,
Display_File => No_File,