aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/ali-util.ads
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2013-04-24 15:08:31 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2013-04-24 15:08:31 +0200
commitb546e2a732f0572fb3119facb48ead0b44c75afc (patch)
treea3be080dfdcb9afdc5009eb2a2f98b02acae6330 /gcc/ada/ali-util.ads
parentdba44dbef91efd698ead6dcce7b19a24a4522000 (diff)
downloadgcc-b546e2a732f0572fb3119facb48ead0b44c75afc.zip
gcc-b546e2a732f0572fb3119facb48ead0b44c75afc.tar.gz
gcc-b546e2a732f0572fb3119facb48ead0b44c75afc.tar.bz2
[multiple changes]
2013-04-24 Eric Botcazou <ebotcazou@adacore.com> * fe.h (Machine_Overflows_On_Target): New macro and declaration. (Signed_Zeros_On_Target): Likewise. 2013-04-24 Hristian Kirtchev <kirtchev@adacore.com> * exp_ch6.adb: Add with and use clause for Sem_Prag. (Freeze_Subprogram): Analyze all delayed aspects for a null procedure so that they are available when analyzing the internally-generated _Postconditions routine. * exp_ch13.adb: Remove with and use clause for Sem_Prag. (Expand_N_Freeze_Entity): Move the code that analyzes delayed aspects of null procedures to exp_ch6.Freeze_Subprogram. * sem_prag.adb (Analyze_Abstract_State): Update the check on volatile requirements. 2013-04-24 Bob Duff <duff@adacore.com> * ali-util.ads (Source_Record): New component Stamp_File to record from whence the Stamp came. * ali-util.adb (Set_Source_Table): Set Stamp_File component. * bcheck.adb (Check_Consistency): Print additional information in Verbose_Mode. * gnatbind.adb (Gnatbind): Print additional information in Verbose_Mode. From-SVN: r198224
Diffstat (limited to 'gcc/ada/ali-util.ads')
-rw-r--r--gcc/ada/ali-util.ads9
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ada/ali-util.ads b/gcc/ada/ali-util.ads
index 707fec7..251f3e7 100644
--- a/gcc/ada/ali-util.ads
+++ b/gcc/ada/ali-util.ads
@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
--- Copyright (C) 1992-2011, Free Software Foundation, Inc. --
+-- Copyright (C) 1992-2013, 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- --
@@ -57,6 +57,13 @@ package ALI.Util is
-- located and the Stamp value was set from the actual source file.
-- It is always false if Check_Source_Files is not set.
+ Stamp_File : File_Name_Type;
+ -- File that Stamp came from. If Source_Found is True, then Stamp is the
+ -- timestamp of the source file, and this is the name of the source
+ -- file. If Source_Found is False, then Stamp comes from a dependency
+ -- line in an ALI file, this is the name of that ALI file. Used only in
+ -- verbose mode, for messages.
+
All_Timestamps_Match : Boolean;
-- This flag is set only if all files referencing this source file
-- have a matching time stamp, and also, if Source_Found is True,