diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-22 13:28:59 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-06-22 13:28:59 +0000 |
commit | 1cf3e68fce1617b528b52884a6e32e0692a33bb0 (patch) | |
tree | 4b42ff27b8bbc52a2a7f6a8d4867f75dbaf294aa /gcc/ada/bindusg.adb | |
parent | 0c6022602c0531dbafa2e9f9411ca805bacaa7bb (diff) | |
download | gcc-1cf3e68fce1617b528b52884a6e32e0692a33bb0.tar.gz |
2009-06-22 Jose Ruiz <ruiz@adacore.com>
* sysdep.c (__gnat_localtime_tzoff for RTX):
SystemTimeToTzSpecificLocalTime is not supported by RTX. Use
GetTimeZoneInformation instead.
2009-06-22 Robert Dewar <dewar@adacore.com>
* sem_res.adb (Check_No_Direct_Boolean_Operators): New procedure
2009-06-22 Ed Schonberg <schonberg@adacore.com>
* sem_ch12.adb (Collect_Previous_Instances): Do not collect
instantiations declared in a previous generic package body.
2009-06-22 Robert Dewar <dewar@adacore.com>
* gnat_rm.texi: Add doc that X=True and X=False is allowed for the
restriction No_Direct_Boolean_Operators.
2009-06-22 Thomas Quinot <quinot@adacore.com>
* bindusg.adb: Minor fixes to gnatbind usage message
* sem_eval.adb: Minor reformatting
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@148794 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/bindusg.adb')
-rw-r--r-- | gcc/ada/bindusg.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/bindusg.adb b/gcc/ada/bindusg.adb index 19d0c147b86..2529c351cf1 100644 --- a/gcc/ada/bindusg.adb +++ b/gcc/ada/bindusg.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2008, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2009, 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- -- @@ -99,7 +99,7 @@ package body Bindusg is -- Line for D switch Write_Line (" -Dnn[k|m] Default secondary stack " & - "size = nnn [kilo|mega] bytes"); + "size = nn [kilo|mega] bytes"); -- Line for -e switch @@ -108,7 +108,7 @@ package body Bindusg is -- Line for -E switch - Write_Line (" -E Store tracebacks in Exception occurrences"); + Write_Line (" -E Store tracebacks in exception occurrences"); -- The -f switch is voluntarily omitted, because it is obsolete |