diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2012-10-29 11:21:52 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2012-10-29 11:21:52 +0100 |
commit | 63d0d1a376737338f737587dbe0efb98a7a8101d (patch) | |
tree | 2db6b0cdcdb8e86bd4b29ad8d6f7162bd1e7f412 /gcc/ada/g-sechas.adb | |
parent | 616547fa1d304d5ca42831def8ddc2d8a1a6aa83 (diff) | |
download | gcc-63d0d1a376737338f737587dbe0efb98a7a8101d.zip gcc-63d0d1a376737338f737587dbe0efb98a7a8101d.tar.gz gcc-63d0d1a376737338f737587dbe0efb98a7a8101d.tar.bz2 |
[multiple changes]
2012-10-29 Robert Dewar <dewar@adacore.com>
* warnsw.adb: Complete previous change.
2012-10-29 Tristan Gingold <gingold@adacore.com>
* bindgen.adb (Check_File_In_Partition, Check_System_Restrictions_Used):
Removed.
(Check_Dispatching_Domains_Used): Removed.
(Gen_Adafinal): Remove call to above procedures.
(Resolve_Binder_Options): Handle system restrictions and dispatching
domains.
2012-10-29 Tristan Gingold <gingold@adacore.com>
* s-tarest.ads, s-tarest.adb (Create_Restricted_Task): Remove
Chain parameter.
* exp_ch9.adb (Make_Task_Create_Call): Do not add Chain parameter
on restricted runtime.
2012-10-29 Pascal Obry <obry@adacore.com>
* g-sechas.adb, g-sechas.ads: Minor code clean-up.
From-SVN: r192920
Diffstat (limited to 'gcc/ada/g-sechas.adb')
-rw-r--r-- | gcc/ada/g-sechas.adb | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/ada/g-sechas.adb b/gcc/ada/g-sechas.adb index 78eddc3..921ef3e 100644 --- a/gcc/ada/g-sechas.adb +++ b/gcc/ada/g-sechas.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2009, Free Software Foundation, Inc. -- +-- Copyright (C) 2009-2012, 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- -- @@ -34,8 +34,6 @@ with Interfaces; use Interfaces; package body GNAT.Secure_Hashes is - use Ada.Streams; - Hex_Digit : constant array (Stream_Element range 0 .. 15) of Character := "0123456789abcdef"; |