Commit 12d3e34b by Tobias Schlüter Committed by Tobias Schlüter

gcc.c (process_command): Change year in 'gcc --version' to 2005.

* gcc.c (process_command): Change year in 'gcc --version' to 2005.

fortran/
* gfortranspec.c (lang_specific_driver): Change year to 2005 in
output of 'gfortran --version'.

From-SVN: r92995
parent 023458fa
2005-01-06 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* gcc.c (process_command): Change year in 'gcc --version' to 2005.
2005-01-05 Daniel Berlin <dberlin@dberlin.org> 2005-01-05 Daniel Berlin <dberlin@dberlin.org>
Fix PR middle-end/19286 Fix PR middle-end/19286
......
2005-01-06 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
* gfortranspec.c (lang_specific_driver): Change year to 2005 in
output of 'gfortran --version'.
2005-01-03 Steven G. Kargl <kargls@comcast.net> 2005-01-03 Steven G. Kargl <kargls@comcast.net>
* arith.c: Add system.h; remove string.h * arith.c: Add system.h; remove string.h
......
/* Specific flags and argument handling of the Fortran front-end. /* Specific flags and argument handling of the Fortran front-end.
Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004 Free Software Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free
Foundation, Inc. Software Foundation, Inc.
This file is part of GCC. This file is part of GCC.
...@@ -347,7 +347,7 @@ lang_specific_driver (int *in_argc, const char *const **in_argv, ...@@ -347,7 +347,7 @@ lang_specific_driver (int *in_argc, const char *const **in_argv,
case OPTION_version: case OPTION_version:
printf ("\ printf ("\
GNU Fortran 95 (GCC %s)\n\ GNU Fortran 95 (GCC %s)\n\
Copyright (C) 2004 Free Software Foundation, Inc.\n\ Copyright (C) 2005 Free Software Foundation, Inc.\n\
\n\ \n\
GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\ GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\
You may redistribute copies of GNU Fortran\n\ You may redistribute copies of GNU Fortran\n\
......
/* Compiler driver program that can handle many languages. /* Compiler driver program that can handle many languages.
Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc. 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
Inc.
This file is part of GCC. This file is part of GCC.
...@@ -3411,7 +3412,7 @@ process_command (int argc, const char **argv) ...@@ -3411,7 +3412,7 @@ process_command (int argc, const char **argv)
{ {
/* translate_options () has turned --version into -fversion. */ /* translate_options () has turned --version into -fversion. */
printf (_("%s (GCC) %s\n"), programname, version_string); printf (_("%s (GCC) %s\n"), programname, version_string);
printf ("Copyright %s 2004 Free Software Foundation, Inc.\n", printf ("Copyright %s 2005 Free Software Foundation, Inc.\n",
_("(C)")); _("(C)"));
fputs (_("This is free software; see the source for copying conditions. There is NO\n\ fputs (_("This is free software; see the source for copying conditions. There is NO\n\
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"), warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment