aboutsummaryrefslogtreecommitdiff
path: root/libcc1
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2022-01-03 10:42:10 +0100
committerJakub Jelinek <jakub@redhat.com>2022-01-03 10:42:10 +0100
commit7adcbafe45f8001b698967defe682687b52c0007 (patch)
treea927c8a8ba5f074c814e92a1fe7b01c1f50199ee /libcc1
parent5d5db19630ff3b56c91a1c15d12c8167627f9ebe (diff)
downloadgcc-7adcbafe45f8001b698967defe682687b52c0007.zip
gcc-7adcbafe45f8001b698967defe682687b52c0007.tar.gz
gcc-7adcbafe45f8001b698967defe682687b52c0007.tar.bz2
Update copyright years.
Diffstat (limited to 'libcc1')
-rw-r--r--libcc1/Makefile.am2
-rw-r--r--libcc1/callbacks.cc2
-rw-r--r--libcc1/callbacks.hh2
-rw-r--r--libcc1/compiler-name.hh2
-rw-r--r--libcc1/compiler.cc2
-rw-r--r--libcc1/compiler.hh2
-rw-r--r--libcc1/configure.ac2
-rw-r--r--libcc1/connection.cc2
-rw-r--r--libcc1/connection.hh2
-rw-r--r--libcc1/context.cc2
-rw-r--r--libcc1/context.hh2
-rw-r--r--libcc1/deleter.hh2
-rw-r--r--libcc1/findcomp.cc2
-rw-r--r--libcc1/findcomp.hh2
-rw-r--r--libcc1/gdbctx.hh2
-rw-r--r--libcc1/libcc1.cc2
-rw-r--r--libcc1/libcc1plugin.cc2
-rw-r--r--libcc1/libcp1.cc2
-rw-r--r--libcc1/libcp1plugin.cc2
-rw-r--r--libcc1/marshall-cp.hh2
-rw-r--r--libcc1/marshall.cc2
-rw-r--r--libcc1/marshall.hh2
-rw-r--r--libcc1/names.cc2
-rw-r--r--libcc1/names.hh2
-rw-r--r--libcc1/rpc.hh2
-rw-r--r--libcc1/status.hh2
26 files changed, 26 insertions, 26 deletions
diff --git a/libcc1/Makefile.am b/libcc1/Makefile.am
index 49a9543..6e3a34f 100644
--- a/libcc1/Makefile.am
+++ b/libcc1/Makefile.am
@@ -1,4 +1,4 @@
-## Copyright (C) 2014-2021 Free Software Foundation, Inc.
+## Copyright (C) 2014-2022 Free Software Foundation, Inc.
## This file is part of GCC.
diff --git a/libcc1/callbacks.cc b/libcc1/callbacks.cc
index f0a4b1f..d9d6035 100644
--- a/libcc1/callbacks.cc
+++ b/libcc1/callbacks.cc
@@ -1,5 +1,5 @@
/* Callback management.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/callbacks.hh b/libcc1/callbacks.hh
index dc470c6..794e4e2 100644
--- a/libcc1/callbacks.hh
+++ b/libcc1/callbacks.hh
@@ -1,5 +1,5 @@
/* Callback management
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/compiler-name.hh b/libcc1/compiler-name.hh
index fd3c8f3..5922b05 100644
--- a/libcc1/compiler-name.hh
+++ b/libcc1/compiler-name.hh
@@ -1,5 +1,5 @@
/* The names of the compilers we use.
- Copyright (C) 2017-2021 Free Software Foundation, Inc.
+ Copyright (C) 2017-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/compiler.cc b/libcc1/compiler.cc
index a12843c..e52f354 100644
--- a/libcc1/compiler.cc
+++ b/libcc1/compiler.cc
@@ -1,5 +1,5 @@
/* Compiler handling for plugin
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/compiler.hh b/libcc1/compiler.hh
index d10d409..8e174d2 100644
--- a/libcc1/compiler.hh
+++ b/libcc1/compiler.hh
@@ -1,5 +1,5 @@
/* Compiler handling for plugin
- Copyright (C) 2014-2020 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/configure.ac b/libcc1/configure.ac
index 2187e7b..36f5a7e 100644
--- a/libcc1/configure.ac
+++ b/libcc1/configure.ac
@@ -1,4 +1,4 @@
-dnl Copyright (C) 2014-2021 Free Software Foundation, Inc.
+dnl Copyright (C) 2014-2022 Free Software Foundation, Inc.
dnl
dnl This file is part of GCC.
dnl
diff --git a/libcc1/connection.cc b/libcc1/connection.cc
index 45560b9..347179d 100644
--- a/libcc1/connection.cc
+++ b/libcc1/connection.cc
@@ -1,5 +1,5 @@
/* Connect implementation
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/connection.hh b/libcc1/connection.hh
index 15ad171..a67af60 100644
--- a/libcc1/connection.hh
+++ b/libcc1/connection.hh
@@ -1,5 +1,5 @@
/* Plugin connection declarations
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/context.cc b/libcc1/context.cc
index 3d5ff92..37d5023 100644
--- a/libcc1/context.cc
+++ b/libcc1/context.cc
@@ -1,5 +1,5 @@
/* Generic plugin context
- Copyright (C) 2020 Free Software Foundation, Inc.
+ Copyright (C) 2020-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/context.hh b/libcc1/context.hh
index 21a8262..c736bc8 100644
--- a/libcc1/context.hh
+++ b/libcc1/context.hh
@@ -1,5 +1,5 @@
/* Generic plugin context
- Copyright (C) 2020 Free Software Foundation, Inc.
+ Copyright (C) 2020-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/deleter.hh b/libcc1/deleter.hh
index 70553ee..96f41e3 100644
--- a/libcc1/deleter.hh
+++ b/libcc1/deleter.hh
@@ -1,5 +1,5 @@
/* Deleter objects
- Copyright (C) 2020 Free Software Foundation, Inc.
+ Copyright (C) 2020-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/findcomp.cc b/libcc1/findcomp.cc
index 27664c9..4257d7f 100644
--- a/libcc1/findcomp.cc
+++ b/libcc1/findcomp.cc
@@ -1,5 +1,5 @@
/* Find the correct compiler.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/findcomp.hh b/libcc1/findcomp.hh
index d652caa..f09d014 100644
--- a/libcc1/findcomp.hh
+++ b/libcc1/findcomp.hh
@@ -1,5 +1,5 @@
/* Find the correct compiler.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/gdbctx.hh b/libcc1/gdbctx.hh
index 4d24883..99dc9ad 100644
--- a/libcc1/gdbctx.hh
+++ b/libcc1/gdbctx.hh
@@ -1,5 +1,5 @@
/* Generic GDB-side plugin
- Copyright (C) 2020 Free Software Foundation, Inc.
+ Copyright (C) 2020-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/libcc1.cc b/libcc1/libcc1.cc
index febadc8..b77ae18 100644
--- a/libcc1/libcc1.cc
+++ b/libcc1/libcc1.cc
@@ -1,5 +1,5 @@
/* The library used by gdb.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/libcc1plugin.cc b/libcc1/libcc1plugin.cc
index 4d6a3a1..12ab5a57 100644
--- a/libcc1/libcc1plugin.cc
+++ b/libcc1/libcc1plugin.cc
@@ -1,5 +1,5 @@
/* Library interface to C front end
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/libcp1.cc b/libcc1/libcp1.cc
index a933498..21d4462 100644
--- a/libcc1/libcp1.cc
+++ b/libcc1/libcp1.cc
@@ -1,5 +1,5 @@
/* The library used by gdb.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/libcp1plugin.cc b/libcc1/libcp1plugin.cc
index fccdce6..83dab7f 100644
--- a/libcc1/libcp1plugin.cc
+++ b/libcc1/libcp1plugin.cc
@@ -1,5 +1,5 @@
/* Library interface to C++ front end.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC. As it interacts with GDB through libcc1,
they all become a single program as regards the GNU GPL's requirements.
diff --git a/libcc1/marshall-cp.hh b/libcc1/marshall-cp.hh
index ec616e0..b495900 100644
--- a/libcc1/marshall-cp.hh
+++ b/libcc1/marshall-cp.hh
@@ -1,5 +1,5 @@
/* Marshalling and unmarshalling of C++-specific types.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/marshall.cc b/libcc1/marshall.cc
index 4a7a21f..f8136e5 100644
--- a/libcc1/marshall.cc
+++ b/libcc1/marshall.cc
@@ -1,5 +1,5 @@
/* Marshalling and unmarshalling.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/marshall.hh b/libcc1/marshall.hh
index 4a28a8f..762183b 100644
--- a/libcc1/marshall.hh
+++ b/libcc1/marshall.hh
@@ -1,5 +1,5 @@
/* Marshalling and unmarshalling.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/names.cc b/libcc1/names.cc
index cfac8dc..e2992ab 100644
--- a/libcc1/names.cc
+++ b/libcc1/names.cc
@@ -1,5 +1,5 @@
/* String definitions.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/names.hh b/libcc1/names.hh
index a37d286..097b316 100644
--- a/libcc1/names.hh
+++ b/libcc1/names.hh
@@ -1,5 +1,5 @@
/* String declarations.
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/rpc.hh b/libcc1/rpc.hh
index 8e43fa1..83c0439 100644
--- a/libcc1/rpc.hh
+++ b/libcc1/rpc.hh
@@ -1,5 +1,5 @@
/* RPC call and callback templates
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.
diff --git a/libcc1/status.hh b/libcc1/status.hh
index f06dc15..d31b93e 100644
--- a/libcc1/status.hh
+++ b/libcc1/status.hh
@@ -1,5 +1,5 @@
/* status type definition
- Copyright (C) 2014-2021 Free Software Foundation, Inc.
+ Copyright (C) 2014-2022 Free Software Foundation, Inc.
This file is part of GCC.