diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-07 17:01:27 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-07 17:01:27 +0200 |
commit | 3dd9959c810d51dac8ae52ce28212bcac2afc437 (patch) | |
tree | 97de4be619b593f2d66a2fa45de2b0a01f1177c0 /gcc/ada/gnatsym.adb | |
parent | dcd8728b8e5ad2b9920f184e028850553b243ba4 (diff) | |
download | gcc-3dd9959c810d51dac8ae52ce28212bcac2afc437.zip gcc-3dd9959c810d51dac8ae52ce28212bcac2afc437.tar.gz gcc-3dd9959c810d51dac8ae52ce28212bcac2afc437.tar.bz2 |
[multiple changes]
2009-04-07 Robert Dewar <dewar@adacore.com>
(Osint.Fail): Change calling sequence to have one string arg
(Make.Make_Failed): Same change
All callers are adjusted to use concatenation
2009-04-07 Robert Dewar <dewar@adacore.com>
* exp_ch4.adb: Fix documentation typo
2009-04-07 Robert Dewar <dewar@adacore.com>
* tbuild.ads: Minor reformatting
2009-04-07 Javier Miranda <miranda@adacore.com>
* exp_disp.adb (Make_DT): Avoid the generation of the OSD_Table
when compiling under ZFP runtime.
2009-04-07 Robert Dewar <dewar@adacore.com>
* g-comlin.adb: Minor reformatting
2009-04-07 Thomas Quinot <quinot@adacore.com>
* socket.c, g-socthi-vms.adb, g-socthi-vms.ads, g-socthi-vxworks.adb,
g-socthi-vxworks.ads, g-socthi-mingw.adb, g-socthi-mingw.ads,
g-socthi.adb, g-socthi.ads, g-socket.adb, g-socket.ads, g-sothco.ads:
Remove dynamic allocation of Fd_Set in Socket_Set_Type objects.
From-SVN: r145678
Diffstat (limited to 'gcc/ada/gnatsym.adb')
-rw-r--r-- | gcc/ada/gnatsym.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/gnatsym.adb b/gcc/ada/gnatsym.adb index a47716c..dec5257 100644 --- a/gcc/ada/gnatsym.adb +++ b/gcc/ada/gnatsym.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2003-2007, Free Software Foundation, Inc. -- +-- Copyright (C) 2003-2008, 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- -- @@ -160,7 +160,7 @@ procedure Gnatsym is Version_String := new String'(GNAT.Command_Line.Parameter); when others => - Fail ("invalid switch: ", Full_Switch); + Fail ("invalid switch: " & Full_Switch); end case; end loop; @@ -181,7 +181,7 @@ procedure Gnatsym is exception when Invalid_Switch => Usage; - Fail ("invalid switch : ", Full_Switch); + Fail ("invalid switch : " & Full_Switch); end Parse_Cmd_Line; ----------- |