gcov.c (print_version), [...]): Update copyright notice dates.
* gcov.c (print_version), gcov-dump.c (print_version), mips-tdump.c (main), mips-tfile.c (main): Update copyright notice dates. fortran: * gfortranspec.c (lang_specific_driver): Update copyright notice date. java: * jv-scan.c (version), jcf-dump.c (version), gjavah.c (version): Update copyright notice dates. treelang: * spec.c (lang_specific_driver): Update copyright notice date. From-SVN: r110069
This commit is contained in:
parent
a55b8e1826
commit
a6d6c2c0e6
13 changed files with 40 additions and 20 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-01-21 Joseph S. Myers <joseph@codesourcery.com>
|
||||
|
||||
* gcov.c (print_version), gcov-dump.c (print_version),
|
||||
mips-tdump.c (main), mips-tfile.c (main): Update copyright notice
|
||||
dates.
|
||||
|
||||
2005-01-21 Kenneth Zadeck <zadeck@naturalbridge.com>
|
||||
|
||||
* df-scan.c (problem_SCAN): Added NULL reset function.
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2006-01-21 Joseph S. Myers <joseph@codesourcery.com>
|
||||
|
||||
* gfortranspec.c (lang_specific_driver): Update copyright notice
|
||||
date.
|
||||
|
||||
2005-01-21 Paul Thomas <pault@gcc.gnu.org>
|
||||
|
||||
PR fortran/25124
|
||||
|
|
|
@ -345,7 +345,7 @@ lang_specific_driver (int *in_argc, const char *const **in_argv,
|
|||
|
||||
case OPTION_version:
|
||||
printf ("GNU Fortran 95 (GCC) %s\n", version_string);
|
||||
printf ("Copyright %s 2005 Free Software Foundation, Inc.\n\n",
|
||||
printf ("Copyright %s 2006 Free Software Foundation, Inc.\n\n",
|
||||
_("(C)"));
|
||||
printf (_("GNU Fortran comes with NO WARRANTY, to the extent permitted by law.\n\
|
||||
You may redistribute copies of GNU Fortran\n\
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Dump a gcov file, for debugging use.
|
||||
Copyright (C) 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||
Contributed by Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
||||
Gcov is free software; you can redistribute it and/or modify
|
||||
|
@ -121,7 +121,7 @@ static void
|
|||
print_version (void)
|
||||
{
|
||||
printf ("gcov-dump (GCC) %s\n", version_string);
|
||||
printf ("Copyright (C) 2003 Free Software Foundation, Inc.\n");
|
||||
printf ("Copyright (C) 2006 Free Software Foundation, Inc.\n");
|
||||
printf ("This is free software; see the source for copying conditions.\n"
|
||||
"There is NO warranty; not even for MERCHANTABILITY or \n"
|
||||
"FITNESS FOR A PARTICULAR PURPOSE.\n\n");
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Gcov.c: prepend line execution counts and branch probabilities to a
|
||||
source file.
|
||||
Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998,
|
||||
1999, 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
Copyright (C) 1990, 1991, 1992, 1993, 1994, 1996, 1997, 1998, 1999,
|
||||
2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||
Contributed by James E. Wilson of Cygnus Support.
|
||||
Mangled by Bob Manson of Cygnus Support.
|
||||
Mangled further by Nathan Sidwell <nathan@codesourcery.com>
|
||||
|
@ -411,7 +411,7 @@ static void
|
|||
print_version (void)
|
||||
{
|
||||
fnotice (stdout, "gcov (GCC) %s\n", version_string);
|
||||
fprintf (stdout, "Copyright %s 2004 Free Software Foundation, Inc.\n",
|
||||
fprintf (stdout, "Copyright %s 2006 Free Software Foundation, Inc.\n",
|
||||
_("(C)"));
|
||||
fnotice (stdout,
|
||||
_("This is free software; see the source for copying conditions.\n"
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2006-01-21 Joseph S. Myers <joseph@codesourcery.com>
|
||||
|
||||
* jv-scan.c (version), jcf-dump.c (version), gjavah.c (version):
|
||||
Update copyright notice dates.
|
||||
|
||||
2006-01-16 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
|
||||
* jvspec.c (lang_specific_spec_functions): Remove.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/* Program to write C++-suitable header files from a Java(TM) .class
|
||||
file. This is similar to SUN's javah.
|
||||
|
||||
Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
||||
Copyright (C) 1996, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||
Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
@ -2403,7 +2403,7 @@ static void
|
|||
version (void)
|
||||
{
|
||||
printf (TOOLNAME " (GCC) %s\n\n", version_string);
|
||||
printf ("Copyright %s 2004 Free Software Foundation, Inc.\n", _("(C)"));
|
||||
printf ("Copyright %s 2006 Free Software Foundation, Inc.\n", _("(C)"));
|
||||
printf (_("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"));
|
||||
exit (0);
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
/* Program to dump out a Java(TM) .class file.
|
||||
Functionally similar to Sun's javap.
|
||||
|
||||
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
||||
Free Software Foundation, Inc.
|
||||
Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
|
||||
2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -928,7 +928,7 @@ static void
|
|||
version (void)
|
||||
{
|
||||
printf ("jcf-dump (GCC) %s\n\n", version_string);
|
||||
printf ("Copyright %s 2004 Free Software Foundation, Inc.\n", _("(C)"));
|
||||
printf ("Copyright %s 2006 Free Software Foundation, Inc.\n", _("(C)"));
|
||||
printf (_("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"));
|
||||
exit (0);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Main for jv-scan
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
||||
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
|
||||
Free Software Foundation, Inc.
|
||||
Contributed by Alexandre Petit-Bianco (apbianco@cygnus.com)
|
||||
|
||||
|
@ -126,7 +126,7 @@ static void
|
|||
version (void)
|
||||
{
|
||||
printf ("jv-scan (GCC) %s\n\n", version_string);
|
||||
printf ("Copyright %s 2004 Free Software Foundation, Inc.\n", _("(C)"));
|
||||
printf ("Copyright %s 2006 Free Software Foundation, Inc.\n", _("(C)"));
|
||||
printf (_("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"));
|
||||
exit (0);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/* Read and manage MIPS symbol tables from object modules.
|
||||
Copyright (C) 1991, 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2003, 2004
|
||||
Free Software Foundation, Inc.
|
||||
Copyright (C) 1991, 1994, 1995, 1997, 1998, 1999, 2000, 2001, 2003, 2004,
|
||||
2006 Free Software Foundation, Inc.
|
||||
Contributed by hartzell@boulder.colorado.edu,
|
||||
Rewritten by meissner@osf.org.
|
||||
|
||||
|
@ -1412,7 +1412,7 @@ main (int argc, char **argv)
|
|||
if (version)
|
||||
{
|
||||
printf ("mips-tdump (GCC) %s\n", version_string);
|
||||
fputs ("Copyright (C) 2003 Free Software Foundation, Inc.\n", stdout);
|
||||
fputs ("Copyright (C) 2006 Free Software Foundation, Inc.\n", stdout);
|
||||
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",
|
||||
stdout);
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
in the form of comments (the mips assembler does not support
|
||||
assembly access to debug information).
|
||||
Copyright (C) 1991, 1993, 1994, 1995, 1997, 1998, 1999, 2000, 2001,
|
||||
2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
||||
2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
|
||||
Contributed by Michael Meissner (meissner@cygnus.com).
|
||||
|
||||
This file is part of GCC.
|
||||
|
@ -4767,7 +4767,7 @@ main (int argc, char **argv)
|
|||
if (version)
|
||||
{
|
||||
printf (_("mips-tfile (GCC) %s\n"), version_string);
|
||||
fputs ("Copyright (C) 2004 Free Software Foundation, Inc.\n", stdout);
|
||||
fputs ("Copyright (C) 2006 Free Software Foundation, Inc.\n", stdout);
|
||||
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"),
|
||||
stdout);
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
2006-01-21 Joseph S. Myers <joseph@codesourcery.com>
|
||||
|
||||
* spec.c (lang_specific_driver): Update copyright notice date.
|
||||
|
||||
2006-01-16 Rafael Ávila de Espíndola <rafael.espindola@gmail.com>
|
||||
|
||||
* spec.c (lang_specific_spec_functions): remove
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Specific flags and argument handling of the Treelang front-end.
|
||||
Copyright (C) 2005 Free Software Foundation, Inc.
|
||||
Copyright (C) 2005, 2006 Free Software Foundation, Inc.
|
||||
|
||||
This file is part of GCC.
|
||||
|
||||
|
@ -38,7 +38,7 @@ lang_specific_driver (int *in_argc, const char *const **in_argv,
|
|||
{
|
||||
printf ("\
|
||||
GNU Treelang (GCC %s)\n\
|
||||
Copyright (C) 2005 Free Software Foundation, Inc.\n\
|
||||
Copyright (C) 2006 Free Software Foundation, Inc.\n\
|
||||
\n\
|
||||
GNU Treelang comes with NO WARRANTY, to the extent permitted by law.\n\
|
||||
You may redistribute copies of GNU Treelang\n\
|
||||
|
|
Loading…
Add table
Reference in a new issue