diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-22 10:49:11 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2010-06-22 10:49:11 +0200 |
commit | 6c994759f3581d979a57ce31cfab10cd5329bb44 (patch) | |
tree | 213782122aa486f0afb1639800affca3d31088a3 /gcc/ada/ali-util.ads | |
parent | 88b17d450602da928cabdfcbb324de8e76c4e8c4 (diff) | |
download | gcc-6c994759f3581d979a57ce31cfab10cd5329bb44.zip gcc-6c994759f3581d979a57ce31cfab10cd5329bb44.tar.gz gcc-6c994759f3581d979a57ce31cfab10cd5329bb44.tar.bz2 |
[multiple changes]
2010-06-22 Robert Dewar <dewar@adacore.com>
* sem_ch4.adb (Analyze_Conditional_Expression): Defend against
malformed tree.
* sprint.adb (Sprint_Node_Actual, case N_Conditional_Expression): Ditto.
2010-06-22 Arnaud Charlet <charlet@adacore.com>
* s-intman-vxworks.ads: Code clean up.
2010-06-22 Thomas Quinot <quinot@adacore.com>
* sem_res.adb (Resolve_Slice): When the prefix is an explicit
dereference, construct actual subtype of designated object to generate
proper bounds checks.
2010-06-22 Thomas Quinot <quinot@adacore.com>
* ali-util.adb, ali-util.ads, gnatbind.adb (Read_ALI): Rename to
Read_Withed_ALIs, which is more descriptive.
2010-06-22 Pascal Obry <obry@adacore.com>
* g-sothco.ads: Minor reformatting.
* g-socthi-mingw.adb: Remove part of work on the C_Recvmsg and
C_Sendmsg implementation.
(C_Sendmsg): Do not use lock (not needed).
(C_Recvmsg): Likewise and also do not wait for incoming data.
From-SVN: r161148
Diffstat (limited to 'gcc/ada/ali-util.ads')
-rw-r--r-- | gcc/ada/ali-util.ads | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gcc/ada/ali-util.ads b/gcc/ada/ali-util.ads index d28ad40..3f4f6eb 100644 --- a/gcc/ada/ali-util.ads +++ b/gcc/ada/ali-util.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2007, 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- -- @@ -32,9 +32,9 @@ package ALI.Util is -- Source File Table -- ----------------------- - -- A source file table entry is built for every source file that is - -- in the source dependency table of any of the ALI files that make - -- up the current program. + -- A source file table entry is built for every source file that is in the + -- source dependency table of any of the ALI files that make up the current + -- program. No_Source_Id : constant Source_Id := Source_Id'First; -- Special value indicating no Source table entry @@ -101,11 +101,11 @@ package ALI.Util is -- Subprograms for Manipulating ALI Information -- -------------------------------------------------- - procedure Read_ALI (Id : ALI_Id); - -- Process an ALI file which has been read and scanned by looping - -- through all withed units in the ALI file, checking if they have - -- been processed. Each unit that has not yet been processed will - -- be read, scanned, and processed recursively. + procedure Read_Withed_ALIs (Id : ALI_Id); + -- Process an ALI file which has been read and scanned by looping through + -- all withed units in the ALI file, checking if they have been processed. + -- Each unit that has not yet been processed will be read, scanned, and + -- processed recursively. procedure Set_Source_Table (A : ALI_Id); -- Build source table entry corresponding to the ALI file whose id is A |