OSDN Git Service

gcc/
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Jan 2011 16:14:57 +0000 (16:14 +0000)
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 3 Jan 2011 16:14:57 +0000 (16:14 +0000)
* gcc.c (process_command): Update copyright notice dates.
* gcov.c (print_version): Likewise.
* gcov-dump.c (print_version): Likewise.
* mips-tfile.c (main): Likewise.
* mips-tdump.c (main): Likewise.
gcc/fortran/
* gfortranspec.c (lang_specific_driver): Update copyright notice
dates.
gcc/java/
* jcf-dump.c (version): Update copyright notice dates.
libmudflap/
* mf-runtime.c (__mf_usage): Update copyright notice dates.
libjava/
* gnu/gcj/convert/Convert.java (version): Update copyright notice
dates.
* gnu/gcj/tools/gcj_dbtool/Main.java (main): Likewise.
libjava/classpath/
* gnu/java/rmi/registry/RegistryImpl.java (version): Update
copyright notice dates.
* tools/gnu/classpath/tools/orbd/Main.java (run): Likewise.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@168432 138bc75d-0d04-0410-961f-82ee72b054a4

18 files changed:
gcc/ChangeLog
gcc/fortran/ChangeLog
gcc/fortran/gfortranspec.c
gcc/gcc.c
gcc/gcov-dump.c
gcc/gcov.c
gcc/java/ChangeLog
gcc/java/jcf-dump.c
gcc/mips-tdump.c
gcc/mips-tfile.c
libjava/ChangeLog
libjava/classpath/ChangeLog.gcj
libjava/classpath/gnu/java/rmi/registry/RegistryImpl.java
libjava/classpath/tools/gnu/classpath/tools/orbd/Main.java
libjava/gnu/gcj/convert/Convert.java
libjava/gnu/gcj/tools/gcj_dbtool/Main.java
libmudflap/ChangeLog
libmudflap/mf-runtime.c

index 0b92221..4a5b8c7 100644 (file)
@@ -1,3 +1,11 @@
+2011-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * gcc.c (process_command): Update copyright notice dates.
+       * gcov.c (print_version): Likewise.
+       * gcov-dump.c (print_version): Likewise.
+       * mips-tfile.c (main): Likewise.
+       * mips-tdump.c (main): Likewise.
+
 2011-01-03  Martin Jambor  <mjambor@suse.cz>
 
        PR tree-optimization/46801
index 4448930..0150108 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * gfortranspec.c (lang_specific_driver): Update copyright notice
+       dates.
+
 2011-01-03  Janus Weil  <janus@gcc.gnu.org>
 
        * intrinsic.texi (LEADZ): Fix example.
index 4bf9bf1..a9bc714 100644 (file)
@@ -1,6 +1,6 @@
 /* Specific flags and argument handling of the Fortran front-end.
    Copyright (C) 1997, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-   2007, 2008, 2009, 2010
+   2007, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
 
 This file is part of GCC.
@@ -298,7 +298,7 @@ lang_specific_driver (struct cl_decoded_option **in_decoded_options,
 
        case OPT__version:
          printf ("GNU Fortran %s%s\n", pkgversion_string, version_string);
-         printf ("Copyright %s 2010 Free Software Foundation, Inc.\n\n",
+         printf ("Copyright %s 2011 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\
index 69bf033..25d2b06 100644 (file)
--- a/gcc/gcc.c
+++ b/gcc/gcc.c
@@ -1,7 +1,7 @@
 /* Compiler driver program that can handle many languages.
    Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
    1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009,
-   2010
+   2010, 2011
    Free Software Foundation, Inc.
 
 This file is part of GCC.
@@ -6513,7 +6513,7 @@ main (int argc, char **argv)
     {
       printf (_("%s %s%s\n"), progname, pkgversion_string,
              version_string);
-      printf ("Copyright %s 2010 Free Software Foundation, Inc.\n",
+      printf ("Copyright %s 2011 Free Software Foundation, Inc.\n",
              _("(C)"));
       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"),
index 6b06d95..3706f9e 100644 (file)
@@ -1,5 +1,5 @@
 /* Dump a gcov file, for debugging use.
-   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
+   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
    Contributed by Nathan Sidwell <nathan@codesourcery.com>
 
@@ -121,7 +121,7 @@ static void
 print_version (void)
 {
   printf ("gcov-dump %s%s\n", pkgversion_string, version_string);
-  printf ("Copyright (C) 2010 Free Software Foundation, Inc.\n");
+  printf ("Copyright (C) 2011 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");
index 20d5fdf..2fbeaf5 100644 (file)
@@ -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, 2006, 2007, 2008, 2009, 2010
+   2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
    Contributed by James E. Wilson of Cygnus Support.
    Mangled by Bob Manson of Cygnus Support.
@@ -440,7 +440,7 @@ static void
 print_version (void)
 {
   fnotice (stdout, "gcov %s%s\n", pkgversion_string, version_string);
-  fprintf (stdout, "Copyright %s 2010 Free Software Foundation, Inc.\n",
+  fprintf (stdout, "Copyright %s 2011 Free Software Foundation, Inc.\n",
           _("(C)"));
   fnotice (stdout,
           _("This is free software; see the source for copying conditions.\n"
index 957c032..b612577 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * jcf-dump.c (version): Update copyright notice dates.
+
 2010-12-15  Dave Korn  <dave.korn.cygwin@gmail.com>
 
        * decl.c (java_init_decl_processing): Initialise integer_three_node.
index 9956c41..719105f 100644 (file)
@@ -2,7 +2,7 @@
    Functionally similar to Sun's javap.
 
    Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-   2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+   2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 
 This file is part of GCC.
 
@@ -1161,7 +1161,7 @@ static void
 version (void)
 {
   printf ("jcf-dump %s%s\n\n", pkgversion_string, version_string);
-  printf ("Copyright %s 2010 Free Software Foundation, Inc.\n", _("(C)"));
+  printf ("Copyright %s 2011 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);
index cfdc0d4..3a57458 100644 (file)
@@ -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,
-   2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+   2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
    Contributed by hartzell@boulder.colorado.edu,
    Rewritten by meissner@osf.org.
 
@@ -1414,7 +1414,7 @@ main (int argc, char **argv)
   if (version)
     {
       printf ("mips-tdump %s%s\n", pkgversion_string, version_string);
-      fputs ("Copyright (C) 2010 Free Software Foundation, Inc.\n", stdout);
+      fputs ("Copyright (C) 2011 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);
index 3dfb8ae..28be8d1 100644 (file)
@@ -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, 2006, 2007, 2008, 2009, 2010
+   2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
    Contributed by Michael Meissner (meissner@cygnus.com).
 
@@ -4784,7 +4784,7 @@ main (int argc, char **argv)
   if (version)
     {
       printf (_("mips-tfile %s%s\n"), pkgversion_string, version_string);
-      fputs ("Copyright (C) 2010 Free Software Foundation, Inc.\n", stdout);
+      fputs ("Copyright (C) 2011 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);
index a3aa49d..b087b5f 100644 (file)
@@ -1,3 +1,8 @@
+2011-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * gnu/gcj/convert/Convert.java (version): Update copyright notice
+       dates.
+       * gnu/gcj/tools/gcj_dbtool/Main.java (main): Likewise.
 \f
 Copyright (C) 2011 Free Software Foundation, Inc.
 
index 25a4d4d..a6b453d 100644 (file)
@@ -1,3 +1,9 @@
+2011-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * gnu/java/rmi/registry/RegistryImpl.java (version): Update
+       copyright notice dates.
+       * tools/gnu/classpath/tools/orbd/Main.java (run): Likewise.
+
 2010-06-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
 
        * doc/Makefile.am (POD2MAN): Provide --date from ChangeLog.
index ed80310..78c600a 100644 (file)
@@ -1,5 +1,5 @@
 /* RegistryImpl.java --
-   Copyright (c) 1996, 1997, 1998, 1999, 2002, 2005, 2008, 2009, 2010
+   Copyright (c) 1996, 1997, 1998, 1999, 2002, 2005, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
@@ -111,7 +111,7 @@ public static void version() {
                           + System.getProperty("java.vm.name")
                           + ") "
                           + System.getProperty("java.vm.version"));
-       System.out.println("Copyright 2010 Free Software Foundation, Inc.");
+       System.out.println("Copyright 2011 Free Software Foundation, Inc.");
        System.out.println("This is free software; see the source for copying conditions.  There is NO");
        System.out.println("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
        System.exit(0);
index 0947843..05951b7 100644 (file)
@@ -1,5 +1,5 @@
 /* NamingServicePersistent.java -- The persistent naming service.
-   Copyright (C) 2006, 2008, 2009, 2010 Free Software Foundation, Inc.
+   Copyright (C) 2006, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -179,7 +179,7 @@ public class Main
         System.out.println("GNU Classpath persistent naming service "
                            + "started at " + iorr.Internet.host + ":"
                            + iorr.Internet.port + " key 'NameService'.\n\n"
-                           + "Copyright (C) 2010 Free Software Foundation\n"
+                           + "Copyright (C) 2011 Free Software Foundation\n"
                            + "This tool comes with ABSOLUTELY NO WARRANTY. "
                            + "This is free software, and you are\nwelcome to "
                            + "redistribute it under conditions, defined in "
index 5b15014..e0662b7 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2002, 2005, 2006, 2007, 2008, 2009, 2010
+/* Copyright (C) 1999, 2002, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation
 
    This file is part of libgcj.
@@ -46,7 +46,7 @@ public class Convert
                       + ") "
                       + System.getProperty("java.vm.version"));
     System.out.println();
-    System.out.println("Copyright (C) 2010 Free Software Foundation, Inc.");
+    System.out.println("Copyright (C) 2011 Free Software Foundation, Inc.");
     System.out.println("This is free software; see the source for copying conditions.  There is NO");
     System.out.println("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
     System.exit(0);
index 706bc9c..e5e3e44 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010
+/* Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011
    Free Software Foundation
 
    This file is part of libgcj.
@@ -47,7 +47,7 @@ public class Main
                           + ") "
                           + System.getProperty("java.vm.version"));
        System.out.println();
-       System.out.println("Copyright 2010 Free Software Foundation, Inc.");
+       System.out.println("Copyright 2011 Free Software Foundation, Inc.");
        System.out.println("This is free software; see the source for copying conditions.  There is NO");
        System.out.println("warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.");
        return;
index 23f4bad..f1fe040 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-03  Jakub Jelinek  <jakub@redhat.com>
+
+       * mf-runtime.c (__mf_usage): Update copyright notice dates.
+
 2010-10-31  Jason Merrill  <jason@redhat.com>
 
        PR testsuite/20003
index 25e49ba..6892804 100644 (file)
@@ -1,5 +1,5 @@
 /* Mudflap: narrow-pointer bounds-checking by tree rewriting.
-   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010
+   Copyright (C) 2002, 2003, 2004, 2005, 2006, 2008, 2009, 2010, 2011
    Free Software Foundation, Inc.
    Contributed by Frank Ch. Eigler <fche@redhat.com>
    and Graydon Hoare <graydon@redhat.com>
@@ -448,7 +448,7 @@ __mf_usage ()
 
   fprintf (stderr,
            "This is a %s%sGCC \"mudflap\" memory-checked binary.\n"
-           "Mudflap is Copyright (C) 2002-2010 Free Software Foundation, Inc.\n"
+           "Mudflap is Copyright (C) 2002-2011 Free Software Foundation, Inc.\n"
            "\n"
            "Unless setuid, a program's mudflap options be set by an environment variable:\n"
            "\n"