aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2014-01-08 05:48:12 -0800
committerH.J. Lu <hjl.tools@gmail.com>2014-01-08 05:48:12 -0800
commit221fd5d598e7dcf7b953150986a501b462b99891 (patch)
tree857464a01150aee2a23937d4e329953ec77a40c6
parent5fb776a6371f2122e891467a8fe9b4d7b8b5c6a4 (diff)
downloadgdb-221fd5d598e7dcf7b953150986a501b462b99891.zip
gdb-221fd5d598e7dcf7b953150986a501b462b99891.tar.gz
gdb-221fd5d598e7dcf7b953150986a501b462b99891.tar.bz2
Update copyright year to 2014
binutils/ * version.c (print_version): Update copyright year to 2014. gas/ * as.c (parse_args): Update copyright year to 2014. gold/ * version.cc (print_version): Update copyright year to 2014. ld/ * ldver.c (ldversion): Update copyright year to 2014. opcodes/ * i386-gen.c (process_copyright): Update copyright year to 2014.
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/version.c4
-rw-r--r--gas/ChangeLog4
-rw-r--r--gas/as.c4
-rw-r--r--gold/ChangeLog4
-rw-r--r--gold/version.cc4
-rw-r--r--ld/ChangeLog4
-rw-r--r--ld/ldver.c4
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/i386-gen.c4
10 files changed, 30 insertions, 10 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 227748f..6f107e1 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
+
+ * version.c (print_version): Update copyright year to 2014.
+
2014-01-07 Tom Tromey <tromey@redhat.com>
* bucomm.c (fatal, non_fatal): Replace obsolete VA_* macros with
diff --git a/binutils/version.c b/binutils/version.c
index 332dff1..5c3fd73 100644
--- a/binutils/version.c
+++ b/binutils/version.c
@@ -1,6 +1,6 @@
/* version.c -- binutils version information
Copyright 1991, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
- 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
+ 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
Free Software Foundation, Inc.
This file is part of GNU Binutils.
@@ -33,7 +33,7 @@ print_version (const char *name)
/* This output is intended to follow the GNU standards document. */
/* xgettext:c-format */
printf ("GNU %s %s\n", name, BFD_VERSION_STRING);
- printf (_("Copyright 2013 Free Software Foundation, Inc.\n"));
+ printf (_("Copyright 2014 Free Software Foundation, Inc.\n"));
printf (_("\
This program is free software; you may redistribute it under the terms of\n\
the GNU General Public License version 3 or (at your option) any later version.\n\
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 93bf64a..0ed7b2d 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
+
+ * as.c (parse_args): Update copyright year to 2014.
+
2014-01-07 Tom Tromey <tromey@redhat.com>
* config/tc-tic30.c (debug): Avoid old VA_* compatibility
diff --git a/gas/as.c b/gas/as.c
index f198043..7aa319a 100644
--- a/gas/as.c
+++ b/gas/as.c
@@ -1,5 +1,5 @@
/* as.c - GAS main program.
- Copyright 1987-2013 Free Software Foundation, Inc.
+ Copyright 1987-2014 Free Software Foundation, Inc.
This file is part of GAS, the GNU Assembler.
@@ -626,7 +626,7 @@ parse_args (int * pargc, char *** pargv)
case OPTION_VERSION:
/* This output is intended to follow the GNU standards document. */
printf (_("GNU assembler %s\n"), BFD_VERSION_STRING);
- printf (_("Copyright 2013 Free Software Foundation, Inc.\n"));
+ printf (_("Copyright 2014 Free Software Foundation, Inc.\n"));
printf (_("\
This program is free software; you may redistribute it under the terms of\n\
the GNU General Public License version 3 or later.\n\
diff --git a/gold/ChangeLog b/gold/ChangeLog
index 1cec15e..a9b583b 100644
--- a/gold/ChangeLog
+++ b/gold/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
+
+ * version.cc (print_version): Update copyright year to 2014.
+
2013-12-19 Dimitry Andric <dimitry@andric.com>
* stringpool.cc (Stringpool_template::reserve): Add
diff --git a/gold/version.cc b/gold/version.cc
index 37977e5..5fd2395 100644
--- a/gold/version.cc
+++ b/gold/version.cc
@@ -1,6 +1,6 @@
// version.c -- print gold version information
-// Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
+// Copyright 2006-2014
// Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>.
@@ -63,7 +63,7 @@ print_version(bool print_short)
if (!print_short)
{
// This output is intended to follow the GNU standards.
- printf(_("Copyright 2013 Free Software Foundation, Inc.\n"));
+ printf(_("Copyright 2014 Free Software Foundation, Inc.\n"));
printf(_("\
This program is free software; you may redistribute it under the terms of\n\
the GNU General Public License version 3 or (at your option) a later version.\n\
diff --git a/ld/ChangeLog b/ld/ChangeLog
index dfe7d09..15725d4 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
+
+ * ldver.c (ldversion): Update copyright year to 2014.
+
For older changes see ChangeLog-2013
Copyright (C) 2014 Free Software Foundation, Inc.
diff --git a/ld/ldver.c b/ld/ldver.c
index d083b71..15aec95 100644
--- a/ld/ldver.c
+++ b/ld/ldver.c
@@ -1,6 +1,6 @@
/* ldver.c -- Print linker version.
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 2000, 2001, 2002,
- 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013
+ 2003, 2005, 2007, 2008, 2009, 2010, 2011, 2012, 2013, 2014
Free Software Foundation, Inc.
This file is part of the GNU Binutils.
@@ -40,7 +40,7 @@ ldversion (int noisy)
if (noisy & 2)
{
- printf (_("Copyright 2013 Free Software Foundation, Inc.\n"));
+ printf (_("Copyright 2014 Free Software Foundation, Inc.\n"));
printf (_("\
This program is free software; you may redistribute it under the terms of\n\
the GNU General Public License version 3 or (at your option) a later version.\n\
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 3147f6f..8f080b6 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2014-01-08 H.J. Lu <hongjiu.lu@intel.com>
+
+ * i386-gen.c (process_copyright): Update copyright year to 2014.
+
2014-01-03 Maciej W. Rozycki <macro@codesourcery.com>
* nds32-asm.c (parse_operand): Fix out-of-range integer constant.
diff --git a/opcodes/i386-gen.c b/opcodes/i386-gen.c
index 62cfbad..09f8280 100644
--- a/opcodes/i386-gen.c
+++ b/opcodes/i386-gen.c
@@ -1,4 +1,4 @@
-/* Copyright 2007, 2008, 2009, 2010, 2011, 2012, 2013
+/* Copyright 2007-2014
Free Software Foundation, Inc.
This file is part of the GNU opcodes library.
@@ -567,7 +567,7 @@ static void
process_copyright (FILE *fp)
{
fprintf (fp, "/* This file is automatically generated by i386-gen. Do not edit! */\n\
-/* Copyright 2007, 2008, 2009, 2010, 2011, 2012, 2013\n\
+/* Copyright 2007-2014\n\
Free Software Foundation, Inc.\n\
\n\
This file is part of the GNU opcodes library.\n\