diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-02-10 14:57:01 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2005-02-10 14:57:01 +0100 |
commit | 448f26107e8e11cb4ff0c24e53c9c96a2cc14042 (patch) | |
tree | 65d8819c164cc64fb71d4de5f7c9131d9a859059 /gcc/ada/gnatname.adb | |
parent | f5da72ceabb971f5ee389e7679845af3f4abddbd (diff) | |
download | gcc-448f26107e8e11cb4ff0c24e53c9c96a2cc14042.tar.gz |
usage.adb: Add line for switch -gnat05 (allow Ada 2005 extensions) Slight fix to...
* usage.adb: Add line for switch -gnat05 (allow Ada 2005 extensions)
Slight fix to documentation of -gnaty with no parameters
* xr_tabls.ads: Add ??? comment for missing overall comment
* xsinfo.adb: Make default file name be sinfo.h, since this is what
we now use by default.
* xsnames.adb: Adjust end of file test to look for five space followed
by '#' instead of six spaces. The format of xsnames.adb was modified
in the last update.
* a-numeri.ads: Add reference to AI-388 for greek letter pi
identifier.
* clean.adb: Minor reformatting.
* gnat1drv.adb, gnatfind.adb, gnatlink.adb, gnatmem.adb,
gnatname.adb: Minor reformatting
Add 2005 to copyright output when utility is run
* csets.adb: Eliminate obsolete comment
* debug.adb, g-socket.ads, i-cobol.adb: Minor reformatting throughout
Update comments.
* sem_eval.ads (Eval_Integer_Literal): Do not inline this, not useful.
From-SVN: r94825
Diffstat (limited to 'gcc/ada/gnatname.adb')
-rw-r--r-- | gcc/ada/gnatname.adb | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/gcc/ada/gnatname.adb b/gcc/ada/gnatname.adb index bdce127628f..dfb2a29e63e 100644 --- a/gcc/ada/gnatname.adb +++ b/gcc/ada/gnatname.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 2001-2004 Free Software Foundation, Inc. -- +-- Copyright (C) 2001-2005 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- -- @@ -172,7 +172,7 @@ procedure Gnatname is Output.Write_Str ("GNATNAME "); Output.Write_Line (Gnatvsn.Gnat_Version_String); Output.Write_Line - ("Copyright 2001-2004 Free Software Foundation, Inc."); + ("Copyright 2001-2005 Free Software Foundation, Inc."); end if; end Output_Version; @@ -231,7 +231,6 @@ procedure Gnatname is when 'v' => if Opt.Verbose_Mode then Very_Verbose := True; - else Opt.Verbose_Mode := True; end if; |