aboutsummaryrefslogtreecommitdiff
path: root/sim/m32c
diff options
context:
space:
mode:
authorJoel Brobecker <brobecker@gnat.com>2011-01-01 15:34:07 +0000
committerJoel Brobecker <brobecker@gnat.com>2011-01-01 15:34:07 +0000
commit7b6bb8daaceb9ecf3f42dea57ae82733d6a3b2f6 (patch)
treede59c8cbd543ce1c90880fa240cd7c7fe91147f1 /sim/m32c
parent71ce852cc78c5d00fa27416d165879de897aac50 (diff)
downloadfsf-binutils-gdb-7b6bb8daaceb9ecf3f42dea57ae82733d6a3b2f6.zip
fsf-binutils-gdb-7b6bb8daaceb9ecf3f42dea57ae82733d6a3b2f6.tar.gz
fsf-binutils-gdb-7b6bb8daaceb9ecf3f42dea57ae82733d6a3b2f6.tar.bz2
run copyright.sh for 2011.
Diffstat (limited to 'sim/m32c')
-rw-r--r--sim/m32c/Makefile.in3
-rw-r--r--sim/m32c/blinky.S3
-rw-r--r--sim/m32c/configure.in3
-rw-r--r--sim/m32c/cpu.h3
-rw-r--r--sim/m32c/gdb-if.c3
-rw-r--r--sim/m32c/gloss.S3
-rw-r--r--sim/m32c/int.c3
-rw-r--r--sim/m32c/int.h3
-rw-r--r--sim/m32c/load.c3
-rw-r--r--sim/m32c/load.h3
-rw-r--r--sim/m32c/m32c.opc3
-rw-r--r--sim/m32c/main.c3
-rw-r--r--sim/m32c/mem.c3
-rw-r--r--sim/m32c/mem.h3
-rw-r--r--sim/m32c/misc.c3
-rw-r--r--sim/m32c/misc.h3
-rw-r--r--sim/m32c/opc2c.c3
-rw-r--r--sim/m32c/r8c.opc3
-rw-r--r--sim/m32c/reg.c3
-rw-r--r--sim/m32c/safe-fgets.c3
-rw-r--r--sim/m32c/safe-fgets.h3
-rw-r--r--sim/m32c/sample.S3
-rw-r--r--sim/m32c/sample.ld3
-rw-r--r--sim/m32c/sample2.c3
-rw-r--r--sim/m32c/srcdest.c3
-rw-r--r--sim/m32c/syscalls.c3
-rw-r--r--sim/m32c/syscalls.h3
-rw-r--r--sim/m32c/trace.c3
-rw-r--r--sim/m32c/trace.h3
29 files changed, 58 insertions, 29 deletions
diff --git a/sim/m32c/Makefile.in b/sim/m32c/Makefile.in
index 18fc24f..3643e6e 100644
--- a/sim/m32c/Makefile.in
+++ b/sim/m32c/Makefile.in
@@ -1,6 +1,7 @@
#### Makefile.in --- Makefile template for the M32C simulator
-### Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+### Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+### Free Software Foundation, Inc.
### Contributed by Red Hat, Inc.
###
### This file is part of the GNU simulators.
diff --git a/sim/m32c/blinky.S b/sim/m32c/blinky.S
index 461c8e0..b53976d 100644
--- a/sim/m32c/blinky.S
+++ b/sim/m32c/blinky.S
@@ -1,6 +1,7 @@
;;; blinky.S --- sample program to blink LED's on M32C simulator
;;;
-;;; Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;;; Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+ Free Software Foundation, Inc.
;;; Contributed by Red Hat, Inc.
;;;
;;; This file is part of the GNU simulators.
diff --git a/sim/m32c/configure.in b/sim/m32c/configure.in
index e757b1f..625c096 100644
--- a/sim/m32c/configure.in
+++ b/sim/m32c/configure.in
@@ -1,6 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
-dnl Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+dnl Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
dnl Contributed by Red Hat, Inc.
dnl
dnl This file is part of the GNU simulators.
diff --git a/sim/m32c/cpu.h b/sim/m32c/cpu.h
index 62f5546..08d5dbd 100644
--- a/sim/m32c/cpu.h
+++ b/sim/m32c/cpu.h
@@ -1,6 +1,7 @@
/* cpu.h --- declarations for the M32C core.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/gdb-if.c b/sim/m32c/gdb-if.c
index fb943f5..1a93ab6 100644
--- a/sim/m32c/gdb-if.c
+++ b/sim/m32c/gdb-if.c
@@ -1,6 +1,7 @@
/* gdb.c --- sim interface to GDB.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/gloss.S b/sim/m32c/gloss.S
index 9cc9ff1..2940e59 100644
--- a/sim/m32c/gloss.S
+++ b/sim/m32c/gloss.S
@@ -1,6 +1,7 @@
;;; gloss.S --- system calls for sample2.x
;;;
-;;; Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;;; Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+ Free Software Foundation, Inc.
;;; Contributed by Red Hat, Inc.
;;;
;;; This file is part of the GNU simulators.
diff --git a/sim/m32c/int.c b/sim/m32c/int.c
index 5d2ba0f..0b3b6fe 100644
--- a/sim/m32c/int.c
+++ b/sim/m32c/int.c
@@ -1,6 +1,7 @@
/* int.c --- M32C interrupt handling.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/int.h b/sim/m32c/int.h
index 0f26fc2..ef14b00 100644
--- a/sim/m32c/int.h
+++ b/sim/m32c/int.h
@@ -1,6 +1,7 @@
/* int.h --- interface to M32C interrupt handling.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/load.c b/sim/m32c/load.c
index c9cf396..a040274 100644
--- a/sim/m32c/load.c
+++ b/sim/m32c/load.c
@@ -1,6 +1,7 @@
/* load.c --- loading object files into the M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/load.h b/sim/m32c/load.h
index f89501e..f535435 100644
--- a/sim/m32c/load.h
+++ b/sim/m32c/load.h
@@ -1,6 +1,7 @@
/* load.h --- interface to loading object files into the M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/m32c.opc b/sim/m32c/m32c.opc
index a2ddda9..ccadbe6 100644
--- a/sim/m32c/m32c.opc
+++ b/sim/m32c/m32c.opc
@@ -1,6 +1,7 @@
/* m32c.opc --- semantics for m32c opcodes. -*- mode: c -*-
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/main.c b/sim/m32c/main.c
index 2f31242..648103b 100644
--- a/sim/m32c/main.c
+++ b/sim/m32c/main.c
@@ -1,6 +1,7 @@
/* main.c --- main function for stand-alone M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/mem.c b/sim/m32c/mem.c
index 02604d5..52201dc 100644
--- a/sim/m32c/mem.c
+++ b/sim/m32c/mem.c
@@ -1,6 +1,7 @@
/* mem.c --- memory for M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/mem.h b/sim/m32c/mem.h
index a36a389..27ab1ca 100644
--- a/sim/m32c/mem.h
+++ b/sim/m32c/mem.h
@@ -1,6 +1,7 @@
/* mem.h --- interface to memory for M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/misc.c b/sim/m32c/misc.c
index 9538535..6efa2b8 100644
--- a/sim/m32c/misc.c
+++ b/sim/m32c/misc.c
@@ -1,6 +1,7 @@
/* misc.c --- miscellaneous utility functions for M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/misc.h b/sim/m32c/misc.h
index f19c612..3c66845 100644
--- a/sim/m32c/misc.h
+++ b/sim/m32c/misc.h
@@ -1,6 +1,7 @@
/* misc.h --- interface to miscellaneous utility functions for M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/opc2c.c b/sim/m32c/opc2c.c
index 748ff53..e188d26 100644
--- a/sim/m32c/opc2c.c
+++ b/sim/m32c/opc2c.c
@@ -1,6 +1,7 @@
/* opc2c.c --- generate C simulator code from from .opc file
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/r8c.opc b/sim/m32c/r8c.opc
index 460b458..1dcc42a 100644
--- a/sim/m32c/r8c.opc
+++ b/sim/m32c/r8c.opc
@@ -1,6 +1,7 @@
/* r8c.opc --- semantics for r8c opcodes. -*- mode: c -*-
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/reg.c b/sim/m32c/reg.c
index e5b4310..38e66e2 100644
--- a/sim/m32c/reg.c
+++ b/sim/m32c/reg.c
@@ -1,6 +1,7 @@
/* reg.c --- register set model for M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/safe-fgets.c b/sim/m32c/safe-fgets.c
index 49317b3..fb5fa2f 100644
--- a/sim/m32c/safe-fgets.c
+++ b/sim/m32c/safe-fgets.c
@@ -1,6 +1,7 @@
/* safe-fgets.c --- like fgets, but allocates its own static buffer.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/safe-fgets.h b/sim/m32c/safe-fgets.h
index a0ba9ee..36c140f 100644
--- a/sim/m32c/safe-fgets.h
+++ b/sim/m32c/safe-fgets.h
@@ -1,6 +1,7 @@
/* safe-fgets.h --- interface to safe version of fgets.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/sample.S b/sim/m32c/sample.S
index 7f13fef..4839e69 100644
--- a/sim/m32c/sample.S
+++ b/sim/m32c/sample.S
@@ -1,6 +1,7 @@
;;; sample.S --- simple test program for M32C simulator
;;;
-;;; Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+;;; Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+ Free Software Foundation, Inc.
;;; Contributed by Red Hat, Inc.
;;;
;;; This file is part of the GNU simulators.
diff --git a/sim/m32c/sample.ld b/sim/m32c/sample.ld
index ee61a20..7bc27a0 100644
--- a/sim/m32c/sample.ld
+++ b/sim/m32c/sample.ld
@@ -1,6 +1,7 @@
/* sample2.ld --- linker script for sample2.x
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/sample2.c b/sim/m32c/sample2.c
index 6d9bd1d..1f4ed56 100644
--- a/sim/m32c/sample2.c
+++ b/sim/m32c/sample2.c
@@ -1,6 +1,7 @@
/* sample2.c --- main source for sample2.x test program for M32C simulator
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/srcdest.c b/sim/m32c/srcdest.c
index 380b6a4..7bb5417 100644
--- a/sim/m32c/srcdest.c
+++ b/sim/m32c/srcdest.c
@@ -1,6 +1,7 @@
/* srcdest.c --- decoding M32C addressing modes.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/syscalls.c b/sim/m32c/syscalls.c
index c15f906..8e96a8b 100644
--- a/sim/m32c/syscalls.c
+++ b/sim/m32c/syscalls.c
@@ -1,6 +1,7 @@
/* syscalls.c --- implement system calls for the M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/syscalls.h b/sim/m32c/syscalls.h
index d1592c1..64dced2 100644
--- a/sim/m32c/syscalls.h
+++ b/sim/m32c/syscalls.h
@@ -1,6 +1,7 @@
/* syscalls.h --- interface to syscalls for the M32C sim.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/trace.c b/sim/m32c/trace.c
index beda2de..64c503d 100644
--- a/sim/m32c/trace.c
+++ b/sim/m32c/trace.c
@@ -1,6 +1,7 @@
/* trace.c --- tracing output for the M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/trace.h b/sim/m32c/trace.h
index 575a932..d13c539 100644
--- a/sim/m32c/trace.h
+++ b/sim/m32c/trace.h
@@ -1,6 +1,7 @@
/* trace.h --- interface to tracing output for the M32C simulator.
-Copyright (C) 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008, 2009, 2010, 2011
+Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.