aboutsummaryrefslogtreecommitdiff
path: root/sim/m32c
diff options
context:
space:
mode:
authorAndrew Burgess <aburgess@redhat.com>2024-01-12 15:30:44 +0000
committerAndrew Burgess <aburgess@redhat.com>2024-01-12 15:49:57 +0000
commit1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61 (patch)
treed9322ba2fd1836c6f2aee47cef5e761902ea2bf4 /sim/m32c
parentc3a1c2763df691459c605a6fa90d592bd42fa08d (diff)
downloadgdb-1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61.zip
gdb-1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61.tar.gz
gdb-1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61.tar.bz2
Update copyright year range in header of all files managed by GDB
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
Diffstat (limited to 'sim/m32c')
-rw-r--r--sim/m32c/cpu.h2
-rw-r--r--sim/m32c/gdb-if.c2
-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/local.mk2
-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/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
21 files changed, 21 insertions, 21 deletions
diff --git a/sim/m32c/cpu.h b/sim/m32c/cpu.h
index 71c6784..703917a 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 410d47c..a1a96b4 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 abb7578..2db989e 100644
--- a/sim/m32c/int.c
+++ b/sim/m32c/int.c
@@ -1,6 +1,6 @@
/* int.c --- M32C interrupt handling.
-Copyright (C) 2005-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 9d84890..a4142df 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 47e5f11..c0d3509 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 14fc95f..2ca6c5a 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.
diff --git a/sim/m32c/local.mk b/sim/m32c/local.mk
index 39620b5..3c961ba 100644
--- a/sim/m32c/local.mk
+++ b/sim/m32c/local.mk
@@ -1,6 +1,6 @@
## See sim/Makefile.am
##
-## Copyright (C) 2005-2023 Free Software Foundation, Inc.
+## Copyright (C) 2005-2024 Free Software Foundation, Inc.
## Contributed by Red Hat, Inc.
##
## This program is free software; you can redistribute it and/or modify
diff --git a/sim/m32c/m32c.opc b/sim/m32c/m32c.opc
index 02c894d..1bd2d4d 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 ced4d70..b6cb1ff 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 1ca3472..2c84d49 100644
--- a/sim/m32c/mem.c
+++ b/sim/m32c/mem.c
@@ -1,6 +1,6 @@
/* mem.c --- memory for M32C simulator.
-Copyright (C) 2005-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 36f1803..fc8890a 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 ede72bb..0f7a5ae 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 58a255a..451a759 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 e337acc..9b24f5f 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 9c35e13..50b211b 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 15d63d0..a5961de 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 ea94ddf..40f89c0 100644
--- a/sim/m32c/srcdest.c
+++ b/sim/m32c/srcdest.c
@@ -1,6 +1,6 @@
/* srcdest.c --- decoding M32C addressing modes.
-Copyright (C) 2005-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 1ea51a0..a8f7726 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 f1da9be..4032ece 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 be796b1..b7725e4 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 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 79f4165..a4c7388 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-2023 Free Software Foundation, Inc.
+Copyright (C) 2005-2024 Free Software Foundation, Inc.
Contributed by Red Hat, Inc.
This file is part of the GNU simulators.