diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-18 10:18:07 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-10-18 10:18:07 +0000 |
commit | dd99cc6e9dcb1a419d3be8b1b10c1f8b33078e16 (patch) | |
tree | e04e4d582f301e695971081ecc83be8cd8ed59e1 /gcc/ada/prj.ads | |
parent | 2ab2387ff47264846764f90c13ebec2d17d791e6 (diff) | |
download | gcc-dd99cc6e9dcb1a419d3be8b1b10c1f8b33078e16.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@165624 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index dd3c98156b9..ccf0853bda5 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, |