From 478d10e064010c26b53bf64215d39b87ff94bf3e Mon Sep 17 00:00:00 2001
From: jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4>
Date: Sat, 21 Jan 2006 18:22:19 +0000
Subject: [PATCH] 	* 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.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@110069 138bc75d-0d04-0410-961f-82ee72b054a4
---
 gcc/ChangeLog              | 6 ++++++
 gcc/fortran/ChangeLog      | 5 +++++
 gcc/fortran/gfortranspec.c | 2 +-
 gcc/gcov-dump.c            | 4 ++--
 gcc/gcov.c                 | 6 +++---
 gcc/java/ChangeLog         | 5 +++++
 gcc/java/gjavah.c          | 4 ++--
 gcc/java/jcf-dump.c        | 6 +++---
 gcc/java/jv-scan.c         | 4 ++--
 gcc/mips-tdump.c           | 6 +++---
 gcc/mips-tfile.c           | 4 ++--
 gcc/treelang/ChangeLog     | 4 ++++
 gcc/treelang/spec.c        | 4 ++--
 13 files changed, 40 insertions(+), 20 deletions(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8874f87c856c..986d4d2f4cde 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 23e5c6622287..12c848ad41ac 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 7bbf372061ca..54be2940e57f 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 74ae799637b8..f2dbac814546 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 adce8c8fb8fd..ff583cc786d9 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 c4882ecd77d2..f1aa40e8af4d 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 02fd7799bfe8..35bcdea386ce 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 a1aad370c7fb..b02dfceabe27 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 fc90b1d12b0d..cb2baceba4a9 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 b82fce4571d8..6cdbcfe48ba8 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 d7d754f030cb..3d998f4e571e 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 eca16df634e6..878f1a5fbc7a 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 79178548b1ad..a6a644f3c142 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\
-- 
GitLab