diff options
author | 2024-01-12 15:30:44 +0000 | |
---|---|---|
committer | 2024-01-12 15:49:57 +0000 | |
commit | 1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61 (patch) | |
tree | d9322ba2fd1836c6f2aee47cef5e761902ea2bf4 /sim/rx | |
parent | aarch64: Remove unused code (diff) | |
download | binutils-gdb-1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61.tar.gz binutils-gdb-1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61.tar.bz2 binutils-gdb-1d506c26d9772bcd84e1a7b3a8c8c5bc602dbf61.zip |
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/rx')
-rw-r--r-- | sim/rx/acinclude.m4 | 2 | ||||
-rw-r--r-- | sim/rx/cpu.h | 2 | ||||
-rw-r--r-- | sim/rx/err.c | 2 | ||||
-rw-r--r-- | sim/rx/err.h | 2 | ||||
-rw-r--r-- | sim/rx/fpu.c | 2 | ||||
-rw-r--r-- | sim/rx/fpu.h | 2 | ||||
-rw-r--r-- | sim/rx/gdb-if.c | 2 | ||||
-rw-r--r-- | sim/rx/load.c | 2 | ||||
-rw-r--r-- | sim/rx/load.h | 2 | ||||
-rw-r--r-- | sim/rx/local.mk | 2 | ||||
-rw-r--r-- | sim/rx/main.c | 2 | ||||
-rw-r--r-- | sim/rx/mem.c | 2 | ||||
-rw-r--r-- | sim/rx/mem.h | 2 | ||||
-rw-r--r-- | sim/rx/misc.c | 2 | ||||
-rw-r--r-- | sim/rx/misc.h | 2 | ||||
-rw-r--r-- | sim/rx/reg.c | 2 | ||||
-rw-r--r-- | sim/rx/rx.c | 2 | ||||
-rw-r--r-- | sim/rx/syscalls.c | 2 | ||||
-rw-r--r-- | sim/rx/syscalls.h | 2 | ||||
-rw-r--r-- | sim/rx/trace.c | 2 | ||||
-rw-r--r-- | sim/rx/trace.h | 2 |
21 files changed, 21 insertions, 21 deletions
diff --git a/sim/rx/acinclude.m4 b/sim/rx/acinclude.m4 index d4872e3a636..278478c012c 100644 --- a/sim/rx/acinclude.m4 +++ b/sim/rx/acinclude.m4 @@ -1,4 +1,4 @@ -dnl Copyright (C) 1997-2023 Free Software Foundation, Inc. +dnl Copyright (C) 1997-2024 Free Software Foundation, Inc. dnl dnl This program is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by diff --git a/sim/rx/cpu.h b/sim/rx/cpu.h index 2aac22c7d10..4b0e7fd1596 100644 --- a/sim/rx/cpu.h +++ b/sim/rx/cpu.h @@ -1,6 +1,6 @@ /* cpu.h --- declarations for the RX 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/rx/err.c b/sim/rx/err.c index 6a666521704..ceb17aaddbe 100644 --- a/sim/rx/err.c +++ b/sim/rx/err.c @@ -1,6 +1,6 @@ /* err.c --- handle errors for RX simulator. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/err.h b/sim/rx/err.h index 4dabc2b43ad..3ba6c969e88 100644 --- a/sim/rx/err.h +++ b/sim/rx/err.h @@ -1,6 +1,6 @@ /* err.h --- handle errors for RX simulator. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/fpu.c b/sim/rx/fpu.c index 041439fea72..db7ee794942 100644 --- a/sim/rx/fpu.c +++ b/sim/rx/fpu.c @@ -1,6 +1,6 @@ /* fpu.c --- FPU emulator for stand-alone RX simulator. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/fpu.h b/sim/rx/fpu.h index 0b1cfb3aa30..65aaea8173e 100644 --- a/sim/rx/fpu.h +++ b/sim/rx/fpu.h @@ -1,6 +1,6 @@ /* fpu.h --- FPU emulator for stand-alone RX simulator. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/gdb-if.c b/sim/rx/gdb-if.c index a2b9218d89b..6b616b7612a 100644 --- a/sim/rx/gdb-if.c +++ b/sim/rx/gdb-if.c @@ -1,6 +1,6 @@ /* gdb-if.c -- sim interface to GDB. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/load.c b/sim/rx/load.c index ffb262f4350..8b9cbb32485 100644 --- a/sim/rx/load.c +++ b/sim/rx/load.c @@ -1,6 +1,6 @@ /* load.c --- loading object files into the RX 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/rx/load.h b/sim/rx/load.h index a008388fcbe..cce5bb8858b 100644 --- a/sim/rx/load.h +++ b/sim/rx/load.h @@ -1,6 +1,6 @@ /* load.h --- interface to loading object files into the RX simulator. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/local.mk b/sim/rx/local.mk index 94129652ced..5c7d9cd1b25 100644 --- a/sim/rx/local.mk +++ b/sim/rx/local.mk @@ -1,6 +1,6 @@ ## See sim/Makefile.am ## -## Copyright (C) 2008-2023 Free Software Foundation, Inc. +## Copyright (C) 2008-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/rx/main.c b/sim/rx/main.c index 13d0c473e74..d1015e6d101 100644 --- a/sim/rx/main.c +++ b/sim/rx/main.c @@ -1,6 +1,6 @@ /* main.c --- main function for stand-alone RX 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/rx/mem.c b/sim/rx/mem.c index 83e23023f94..75238ef806e 100644 --- a/sim/rx/mem.c +++ b/sim/rx/mem.c @@ -1,6 +1,6 @@ /* mem.c --- memory for RX 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/rx/mem.h b/sim/rx/mem.h index b70abb78b89..8dfcebea1be 100644 --- a/sim/rx/mem.h +++ b/sim/rx/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/rx/misc.c b/sim/rx/misc.c index 56387ab69c6..426cfcad240 100644 --- a/sim/rx/misc.c +++ b/sim/rx/misc.c @@ -1,6 +1,6 @@ /* misc.c --- miscellaneous utility functions for RX 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/rx/misc.h b/sim/rx/misc.h index 6d907b32d9a..27591b27297 100644 --- a/sim/rx/misc.h +++ b/sim/rx/misc.h @@ -1,6 +1,6 @@ /* misc.h --- interface to miscellaneous utility functions for RX 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/rx/reg.c b/sim/rx/reg.c index 760b287b71e..1bc652d8ce3 100644 --- a/sim/rx/reg.c +++ b/sim/rx/reg.c @@ -1,6 +1,6 @@ /* reg.c --- register set model for RX 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/rx/rx.c b/sim/rx/rx.c index f4f785b938b..57a7d5e74f8 100644 --- a/sim/rx/rx.c +++ b/sim/rx/rx.c @@ -1,6 +1,6 @@ /* rx.c --- opcode semantics for stand-alone RX simulator. -Copyright (C) 2008-2023 Free Software Foundation, Inc. +Copyright (C) 2008-2024 Free Software Foundation, Inc. Contributed by Red Hat, Inc. This file is part of the GNU simulators. diff --git a/sim/rx/syscalls.c b/sim/rx/syscalls.c index 89f723f6d67..f2ef91b3c14 100644 --- a/sim/rx/syscalls.c +++ b/sim/rx/syscalls.c @@ -1,6 +1,6 @@ /* syscalls.c --- implement system calls for the RX 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/rx/syscalls.h b/sim/rx/syscalls.h index 5683aa8d3a2..b62a04791ba 100644 --- a/sim/rx/syscalls.h +++ b/sim/rx/syscalls.h @@ -1,6 +1,6 @@ /* syscalls.h --- interface to syscalls for the RX 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/rx/trace.c b/sim/rx/trace.c index 13ecde37e35..443a990c669 100644 --- a/sim/rx/trace.c +++ b/sim/rx/trace.c @@ -1,6 +1,6 @@ /* trace.c --- tracing output for the RX 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/rx/trace.h b/sim/rx/trace.h index 149a0a49cb3..a8bb024d1d3 100644 --- a/sim/rx/trace.h +++ b/sim/rx/trace.h @@ -1,6 +1,6 @@ /* trace.h --- interface to tracing output for the RX 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. |