summaryrefslogtreecommitdiff
path: root/sim/m32c
diff options
context:
space:
mode:
authorDaniel Jacobowitz <dan@debian.org>2008-01-01 22:53:26 +0000
committerDaniel Jacobowitz <dan@debian.org>2008-01-01 22:53:26 +0000
commitdddada65f371e3f1ab70a7c8545f4abbce61e329 (patch)
treef633a80a28459cc531336ed45af87c969d655e42 /sim/m32c
parentf4a0be6db738ecd1c96494f675046e39dcca7c98 (diff)
downloadgdb-dddada65f371e3f1ab70a7c8545f4abbce61e329.tar.gz
Updated copyright notices for most files.
Diffstat (limited to 'sim/m32c')
-rw-r--r--sim/m32c/Makefile.in2
-rw-r--r--sim/m32c/blinky.S2
-rw-r--r--sim/m32c/configure.in2
-rw-r--r--sim/m32c/cpu.h2
-rw-r--r--sim/m32c/gdb-if.c2
-rw-r--r--sim/m32c/gloss.S2
-rw-r--r--sim/m32c/int.c2
-rw-r--r--sim/m32c/int.h2
-rw-r--r--sim/m32c/load.c2
-rw-r--r--sim/m32c/load.h2
-rw-r--r--sim/m32c/m32c.opc2
-rw-r--r--sim/m32c/main.c2
-rw-r--r--sim/m32c/mem.c2
-rw-r--r--sim/m32c/mem.h2
-rw-r--r--sim/m32c/misc.c2
-rw-r--r--sim/m32c/misc.h2
-rw-r--r--sim/m32c/opc2c.c2
-rw-r--r--sim/m32c/r8c.opc2
-rw-r--r--sim/m32c/reg.c2
-rw-r--r--sim/m32c/safe-fgets.c2
-rw-r--r--sim/m32c/safe-fgets.h2
-rw-r--r--sim/m32c/sample.S2
-rw-r--r--sim/m32c/sample.ld2
-rw-r--r--sim/m32c/sample2.c2
-rw-r--r--sim/m32c/srcdest.c2
-rw-r--r--sim/m32c/syscalls.c2
-rw-r--r--sim/m32c/syscalls.h2
-rw-r--r--sim/m32c/trace.c2
-rw-r--r--sim/m32c/trace.h2
29 files changed, 29 insertions, 29 deletions
diff --git a/sim/m32c/Makefile.in b/sim/m32c/Makefile.in
index 9bc1eeb113a..f58de57e71c 100644
--- a/sim/m32c/Makefile.in
+++ b/sim/m32c/Makefile.in
@@ -1,6 +1,6 @@
#### Makefile.in --- Makefile template for the M32C simulator
-### Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+### Copyright (C) 2005, 2007, 2008 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 222e94c5402..0a87008cba9 100644
--- a/sim/m32c/blinky.S
+++ b/sim/m32c/blinky.S
@@ -1,6 +1,6 @@
;;; blinky.S --- sample program to blink LED's on M32C simulator
;;;
-;;; Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+;;; Copyright (C) 2005, 2007, 2008 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 962dece961d..8478788be4d 100644
--- a/sim/m32c/configure.in
+++ b/sim/m32c/configure.in
@@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script.
-dnl Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+dnl Copyright (C) 2005, 2007, 2008 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 d96d1bab460..eae4cd54b29 100644
--- a/sim/m32c/cpu.h
+++ b/sim/m32c/cpu.h
@@ -1,6 +1,6 @@
/* cpu.h --- declarations for the M32C core.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 5ef1487be94..3ed3221f27d 100644
--- a/sim/m32c/gdb-if.c
+++ b/sim/m32c/gdb-if.c
@@ -1,6 +1,6 @@
/* gdb.c --- sim interface to GDB.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 679ecf2506f..bf43c0d97cb 100644
--- a/sim/m32c/gloss.S
+++ b/sim/m32c/gloss.S
@@ -1,6 +1,6 @@
;;; gloss.S --- system calls for sample2.x
;;;
-;;; Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+;;; Copyright (C) 2005, 2007, 2008 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 47898d10c8c..1959c77f374 100644
--- a/sim/m32c/int.c
+++ b/sim/m32c/int.c
@@ -1,6 +1,6 @@
/* int.c --- M32C interrupt handling.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 d5c9afb9e04..3d36500f8d2 100644
--- a/sim/m32c/int.h
+++ b/sim/m32c/int.h
@@ -1,6 +1,6 @@
/* int.h --- interface to M32C interrupt handling.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 b125f22b47a..229bc0da9b9 100644
--- a/sim/m32c/load.c
+++ b/sim/m32c/load.c
@@ -1,6 +1,6 @@
/* load.c --- loading object files into the M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 1bc7f194fab..ee8205223bc 100644
--- a/sim/m32c/load.h
+++ b/sim/m32c/load.h
@@ -1,6 +1,6 @@
/* load.h --- interface to loading object files into the M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 cb02a9ecd24..da77f950a2e 100644
--- a/sim/m32c/m32c.opc
+++ b/sim/m32c/m32c.opc
@@ -1,6 +1,6 @@
/* m32c.opc --- semantics for m32c opcodes. -*- mode: c -*-
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 3b2799e59f2..7b54f4beb91 100644
--- a/sim/m32c/main.c
+++ b/sim/m32c/main.c
@@ -1,6 +1,6 @@
/* main.c --- main function for stand-alone M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 edae7bf4df9..432162916bb 100644
--- a/sim/m32c/mem.c
+++ b/sim/m32c/mem.c
@@ -1,6 +1,6 @@
/* mem.c --- memory for M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 b2f55f2a411..c4354e442c3 100644
--- a/sim/m32c/mem.h
+++ b/sim/m32c/mem.h
@@ -1,6 +1,6 @@
/* mem.h --- interface to memory for M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 276330cee3b..fcebb8a7ab6 100644
--- a/sim/m32c/misc.c
+++ b/sim/m32c/misc.c
@@ -1,6 +1,6 @@
/* misc.c --- miscellaneous utility functions for M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 59d0dad6e1a..c034de0d328 100644
--- a/sim/m32c/misc.h
+++ b/sim/m32c/misc.h
@@ -1,6 +1,6 @@
/* misc.h --- interface to miscellaneous utility functions for M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 a08827240b7..b1d13690e84 100644
--- a/sim/m32c/opc2c.c
+++ b/sim/m32c/opc2c.c
@@ -1,6 +1,6 @@
/* opc2c.c --- generate C simulator code from from .opc file
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 a5d947e8451..bc7f1073fe5 100644
--- a/sim/m32c/r8c.opc
+++ b/sim/m32c/r8c.opc
@@ -1,6 +1,6 @@
/* r8c.opc --- semantics for r8c opcodes. -*- mode: c -*-
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 c35ebc8bdea..912c32e2e6b 100644
--- a/sim/m32c/reg.c
+++ b/sim/m32c/reg.c
@@ -1,6 +1,6 @@
/* reg.c --- register set model for M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 c1d22e4a63b..ebe32856e68 100644
--- a/sim/m32c/safe-fgets.c
+++ b/sim/m32c/safe-fgets.c
@@ -1,6 +1,6 @@
/* safe-fgets.c --- like fgets, but allocates its own static buffer.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 7d3edaab82d..b69c986853f 100644
--- a/sim/m32c/safe-fgets.h
+++ b/sim/m32c/safe-fgets.h
@@ -1,6 +1,6 @@
/* safe-fgets.h --- interface to safe version of fgets.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 0591f250684..6c59d5b6c9b 100644
--- a/sim/m32c/sample.S
+++ b/sim/m32c/sample.S
@@ -1,6 +1,6 @@
;;; sample.S --- simple test program for M32C simulator
;;;
-;;; Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+;;; Copyright (C) 2005, 2007, 2008 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 b6c956a3044..a535fd5e3df 100644
--- a/sim/m32c/sample.ld
+++ b/sim/m32c/sample.ld
@@ -1,6 +1,6 @@
/* sample2.ld --- linker script for sample2.x
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 ce9f1a132f1..e602a20aff7 100644
--- a/sim/m32c/sample2.c
+++ b/sim/m32c/sample2.c
@@ -1,6 +1,6 @@
/* sample2.c --- main source for sample2.x test program for M32C simulator
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 ae7d872a0a6..0d09c5d3788 100644
--- a/sim/m32c/srcdest.c
+++ b/sim/m32c/srcdest.c
@@ -1,6 +1,6 @@
/* srcdest.c --- decoding M32C addressing modes.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 4ec2cc694c5..1af632d7eb4 100644
--- a/sim/m32c/syscalls.c
+++ b/sim/m32c/syscalls.c
@@ -1,6 +1,6 @@
/* syscalls.c --- implement system calls for the M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 f3e593f7e2f..57d4b3709e7 100644
--- a/sim/m32c/syscalls.h
+++ b/sim/m32c/syscalls.h
@@ -1,6 +1,6 @@
/* syscalls.h --- interface to syscalls for the M32C sim.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 9e526fe935b..ec9ac391711 100644
--- a/sim/m32c/trace.c
+++ b/sim/m32c/trace.c
@@ -1,6 +1,6 @@
/* trace.c --- tracing output for the M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 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 c970f82c977..393a71dd86f 100644
--- a/sim/m32c/trace.h
+++ b/sim/m32c/trace.h
@@ -1,6 +1,6 @@
/* trace.h --- interface to tracing output for the M32C simulator.
-Copyright (C) 2005, 2007 Free Software Foundation, Inc.
+Copyright (C) 2005, 2007, 2008 Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.