diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-25 16:24:20 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2010-01-25 16:24:20 +0000 |
commit | 86ab3fb83cf0c3a3c3a2da252888c072900e86bf (patch) | |
tree | 73a6d903734214bb3ccd477d21e07ab33a02e844 /gcc/ada/g-sechas.ads | |
parent | a93489b1fade2879369bfda69f05f3501a2eaaf6 (diff) | |
download | gcc-86ab3fb83cf0c3a3c3a2da252888c072900e86bf.tar.gz |
2010-01-25 Bob Duff <duff@adacore.com>
* sem_aggr.adb (Resolve_Array_Aggregate): Check for the case where this
is an internally-generated positional aggregate, and the bounds are
already correctly set. We don't want to overwrite those bounds with
bounds determined by context.
2010-01-25 Robert Dewar <dewar@adacore.com>
* g-sercom.ads, gnatcmd.adb, gnatlink.adb, a-ststio.adb, exp_ch6.adb,
exp_ch9.adb, g-sechas.ads: Minor reformatting.
2010-01-25 Thomas Quinot <quinot@adacore.com>
* s-commun.adb (Last_Index): Count must be converted to SEO (a signed
integer type) before subtracting 1, otherwise the computation may wrap
(because size_t is modular) and cause the conversion to fail.
2010-01-25 Ed Falis <falis@adacore.com>
* sysdep.c, init.c: Adapt to support full run-time on VxWorks MILS.
2010-01-25 Vincent Celier <celier@adacore.com>
* prj-attr.adb: New attribute Run_Path_Origin_Required
* prj-nmsc.adb (Process_Project_Level_Simple_Attributes): Process new
attribute Run_Path_Origin_Required.
* prj.ads (Project_Configuration): New component
Run_Path_Origin_Supported.
* snames.ads-tmpl: New standard name Run_Path_Origin_Required
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@156215 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/g-sechas.ads')
-rw-r--r-- | gcc/ada/g-sechas.ads | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/ada/g-sechas.ads b/gcc/ada/g-sechas.ads index e0630015884..6197cfc5ec4 100644 --- a/gcc/ada/g-sechas.ads +++ b/gcc/ada/g-sechas.ads @@ -134,11 +134,10 @@ package GNAT.Secure_Hashes is -- The internal processing state of the hashing function function "=" (L, R : Context) return Boolean is abstract; - -- Context is the internal, implementation defined state of an - -- intermediate state in a hash computation, and no specific semantics - -- can be expected on equality of context values. Only equality of - -- final hash values (as returned by the [Wide_]Digest functions below) - -- is meaningful. + -- Context is the internal, implementation defined intermediate state + -- in a hash computation, and no specific semantics can be expected on + -- equality of context values. Only equality of final hash values (as + -- returned by the [Wide_]Digest functions below) is meaningful. Initial_Context : constant Context; -- Initial value of a Context object. May be used to reinitialize |