diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8874f87c856cb5eb5134c7d91a7186589509c38d..986d4d2f4cde926dfbae5ffed618ad1ea667cd57 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 23e5c66222875a6a3e077737351226cfeffbdeca..12c848ad41ace5a6698facee39cc00848cd91a98 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -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 diff --git a/gcc/fortran/gfortranspec.c b/gcc/fortran/gfortranspec.c index 7bbf372061ca068e6f71135ec2a79d0961b1f909..54be2940e57f28b92880d9172d02862f974422a5 100644 --- a/gcc/fortran/gfortranspec.c +++ b/gcc/fortran/gfortranspec.c @@ -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\ diff --git a/gcc/gcov-dump.c b/gcc/gcov-dump.c index 74ae799637b8673d0334a4fef9110d223f6f6c9e..f2dbac8145468fbaef5ee7da9c660eae15fd1f8d 100644 --- a/gcc/gcov-dump.c +++ b/gcc/gcov-dump.c @@ -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"); diff --git a/gcc/gcov.c b/gcc/gcov.c index adce8c8fb8fd5da5c20b2ee5834a4625b69843ad..ff583cc786d96df34fb40f2823d931dc8d25daf1 100644 --- a/gcc/gcov.c +++ b/gcc/gcov.c @@ -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" diff --git a/gcc/java/ChangeLog b/gcc/java/ChangeLog index c4882ecd77d2948686ed3d126e7202a9d24eb067..f1aa40e8af4df1da97d9f501bbc932a312c4de25 100644 --- a/gcc/java/ChangeLog +++ b/gcc/java/ChangeLog @@ -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. diff --git a/gcc/java/gjavah.c b/gcc/java/gjavah.c index 02fd7799bfe814094745b9ee106afdbf44a3e42a..35bcdea386ce0fd5fd995d5e30fcb25954225879 100644 --- a/gcc/java/gjavah.c +++ b/gcc/java/gjavah.c @@ -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); diff --git a/gcc/java/jcf-dump.c b/gcc/java/jcf-dump.c index a1aad370c7fb6c4ff11069c5ee01d9b04e8cb9cb..b02dfceabe27c71cca363a6df48cb1351e812cbc 100644 --- a/gcc/java/jcf-dump.c +++ b/gcc/java/jcf-dump.c @@ -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); diff --git a/gcc/java/jv-scan.c b/gcc/java/jv-scan.c index fc90b1d12b0db3626ea73769c3de1ff9bcdbdb56..cb2baceba4a97860f5024b7ccfa7af7ef6ffb224 100644 --- a/gcc/java/jv-scan.c +++ b/gcc/java/jv-scan.c @@ -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); diff --git a/gcc/mips-tdump.c b/gcc/mips-tdump.c index b82fce4571d87d86fe5b12da5188db5413a88b43..6cdbcfe48ba83ca032c8979e8236813d09b0686f 100644 --- a/gcc/mips-tdump.c +++ b/gcc/mips-tdump.c @@ -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); diff --git a/gcc/mips-tfile.c b/gcc/mips-tfile.c index d7d754f030cb95f2b19f9313d388b7858045d634..3d998f4e571e0942f60599fe0010176d248bd543 100644 --- a/gcc/mips-tfile.c +++ b/gcc/mips-tfile.c @@ -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); diff --git a/gcc/treelang/ChangeLog b/gcc/treelang/ChangeLog index eca16df634e6778d96e6e9fa16ae953c98a12a62..878f1a5fbc7a54e8c5ef1b78541ea577c0708b1b 100644 --- a/gcc/treelang/ChangeLog +++ b/gcc/treelang/ChangeLog @@ -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 diff --git a/gcc/treelang/spec.c b/gcc/treelang/spec.c index 79178548b1ad2c57bf41b22ed9853d663ffb9767..a6a644f3c14221484caea97ed95de5c7650eb938 100644 --- a/gcc/treelang/spec.c +++ b/gcc/treelang/spec.c @@ -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\