summaryrefslogtreecommitdiff
path: root/libatomic
diff options
context:
space:
mode:
authorjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2015-01-05 12:33:28 +0000
committerjakub <jakub@138bc75d-0d04-0410-961f-82ee72b054a4>2015-01-05 12:33:28 +0000
commitd353bf189d2bbaf4059f402ee4d2a5ea074c349f (patch)
tree37f6e236ab656361ec7d71580442211df53daa44 /libatomic
parente3afb61d668b6ae0e3ded679dbf3d9532347b406 (diff)
Update copyright years.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@219188 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libatomic')
-rw-r--r--libatomic/ChangeLog4
-rw-r--r--libatomic/Makefile.am2
-rw-r--r--libatomic/cas_n.c2
-rw-r--r--libatomic/config/arm/arm-config.h2
-rw-r--r--libatomic/config/arm/exch_n.c2
-rw-r--r--libatomic/config/linux/arm/host-config.h2
-rw-r--r--libatomic/config/linux/arm/init.c2
-rw-r--r--libatomic/config/linux/arm/load_n.c2
-rw-r--r--libatomic/config/linux/arm/store_n.c2
-rw-r--r--libatomic/config/mingw/host-config.h2
-rw-r--r--libatomic/config/mingw/lock.c2
-rw-r--r--libatomic/config/posix/host-config.h2
-rw-r--r--libatomic/config/posix/lock.c2
-rw-r--r--libatomic/config/x86/fenv.c2
-rw-r--r--libatomic/config/x86/host-config.h2
-rw-r--r--libatomic/config/x86/init.c2
-rw-r--r--libatomic/configure.ac2
-rw-r--r--libatomic/configure.tgt2
-rw-r--r--libatomic/exch_n.c2
-rw-r--r--libatomic/fadd_n.c2
-rw-r--r--libatomic/fenv.c2
-rw-r--r--libatomic/fop_n.c2
-rw-r--r--libatomic/gcas.c2
-rw-r--r--libatomic/gexch.c2
-rw-r--r--libatomic/glfree.c2
-rw-r--r--libatomic/gload.c2
-rw-r--r--libatomic/gstore.c2
-rw-r--r--libatomic/host-config.h2
-rw-r--r--libatomic/libatomic_i.h2
-rw-r--r--libatomic/load_n.c2
-rw-r--r--libatomic/store_n.c2
-rw-r--r--libatomic/tas_n.c2
-rw-r--r--libatomic/testsuite/config/default.exp2
33 files changed, 36 insertions, 32 deletions
diff --git a/libatomic/ChangeLog b/libatomic/ChangeLog
index 6476672f2d99..6490154127ff 100644
--- a/libatomic/ChangeLog
+++ b/libatomic/ChangeLog
@@ -1,3 +1,7 @@
+2015-01-05 Jakub Jelinek <jakub@redhat.com>
+
+ Update copyright years.
+
2014-12-12 Kyrylo Tkachov <kyrylo.tkachov@arm.com>
* testsuite/lib/libatomic.exp: Load target-utils.exp
diff --git a/libatomic/Makefile.am b/libatomic/Makefile.am
index 56e1c34f14ab..3d8ab62dc8f4 100644
--- a/libatomic/Makefile.am
+++ b/libatomic/Makefile.am
@@ -1,4 +1,4 @@
-## Copyright (C) 2012-2014 Free Software Foundation, Inc.
+## Copyright (C) 2012-2015 Free Software Foundation, Inc.
## Contributed by Richard Henderson <rth@redhat.com>.
##
## This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/cas_n.c b/libatomic/cas_n.c
index a885afab7a50..604223918fce 100644
--- a/libatomic/cas_n.c
+++ b/libatomic/cas_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/arm/arm-config.h b/libatomic/config/arm/arm-config.h
index 1943b31d13d5..e00fb2d1db0b 100644
--- a/libatomic/config/arm/arm-config.h
+++ b/libatomic/config/arm/arm-config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/arm/exch_n.c b/libatomic/config/arm/exch_n.c
index c90d57f30cca..7ad73b73577a 100644
--- a/libatomic/config/arm/exch_n.c
+++ b/libatomic/config/arm/exch_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/linux/arm/host-config.h b/libatomic/config/linux/arm/host-config.h
index 9c4981e6eba1..ec1a42c6256e 100644
--- a/libatomic/config/linux/arm/host-config.h
+++ b/libatomic/config/linux/arm/host-config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/linux/arm/init.c b/libatomic/config/linux/arm/init.c
index 7e47d0212b02..3054282b0a6e 100644
--- a/libatomic/config/linux/arm/init.c
+++ b/libatomic/config/linux/arm/init.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/linux/arm/load_n.c b/libatomic/config/linux/arm/load_n.c
index f7c4bee6c39b..dbbf03832f84 100644
--- a/libatomic/config/linux/arm/load_n.c
+++ b/libatomic/config/linux/arm/load_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/linux/arm/store_n.c b/libatomic/config/linux/arm/store_n.c
index 342ea4f74d89..3356cd7e3d82 100644
--- a/libatomic/config/linux/arm/store_n.c
+++ b/libatomic/config/linux/arm/store_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/mingw/host-config.h b/libatomic/config/mingw/host-config.h
index 9380922cdc61..2fb74be9ab50 100644
--- a/libatomic/config/mingw/host-config.h
+++ b/libatomic/config/mingw/host-config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014 Free Software Foundation, Inc.
+/* Copyright (C) 2014-2015 Free Software Foundation, Inc.
Contributed by Kai Tietz <ktietz@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/mingw/lock.c b/libatomic/config/mingw/lock.c
index f6818105c615..bec1f5e0f5c0 100644
--- a/libatomic/config/mingw/lock.c
+++ b/libatomic/config/mingw/lock.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2014 Free Software Foundation, Inc.
+/* Copyright (C) 2014-2015 Free Software Foundation, Inc.
Contributed by Kai Tietz <ktietz@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/posix/host-config.h b/libatomic/config/posix/host-config.h
index db55d343bc37..879758e4eb55 100644
--- a/libatomic/config/posix/host-config.h
+++ b/libatomic/config/posix/host-config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/posix/lock.c b/libatomic/config/posix/lock.c
index a214c4509348..16f911f25029 100644
--- a/libatomic/config/posix/lock.c
+++ b/libatomic/config/posix/lock.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/x86/fenv.c b/libatomic/config/x86/fenv.c
index f27981154097..9fad707801ef 100644
--- a/libatomic/config/x86/fenv.c
+++ b/libatomic/config/x86/fenv.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2013-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2013-2015 Free Software Foundation, Inc.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/x86/host-config.h b/libatomic/config/x86/host-config.h
index 9615d3849d1e..ca1dbe9ba538 100644
--- a/libatomic/config/x86/host-config.h
+++ b/libatomic/config/x86/host-config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/config/x86/init.c b/libatomic/config/x86/init.c
index 9663e3edca66..95a1bc4d40c4 100644
--- a/libatomic/config/x86/init.c
+++ b/libatomic/config/x86/init.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/configure.ac b/libatomic/configure.ac
index 5028fee2dd3b..d5e67c851d2f 100644
--- a/libatomic/configure.ac
+++ b/libatomic/configure.ac
@@ -1,5 +1,5 @@
# Process this file with autoreconf to produce a configure script.
-# Copyright (C) 2012-2014 Free Software Foundation, Inc.
+# Copyright (C) 2012-2015 Free Software Foundation, Inc.
#
# This file is part of the GNU Atomic Library (libatomic).
#
diff --git a/libatomic/configure.tgt b/libatomic/configure.tgt
index b0344d595abb..4ab8e403fb9f 100644
--- a/libatomic/configure.tgt
+++ b/libatomic/configure.tgt
@@ -1,5 +1,5 @@
# -*- shell-script -*-
-# Copyright (C) 2012-2014 Free Software Foundation, Inc.
+# Copyright (C) 2012-2015 Free Software Foundation, Inc.
# Contributed by Richard Henderson <rth@redhat.com>.
#
# This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/exch_n.c b/libatomic/exch_n.c
index 23558b099f8c..c25384d6ce21 100644
--- a/libatomic/exch_n.c
+++ b/libatomic/exch_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/fadd_n.c b/libatomic/fadd_n.c
index 9539ef4a3436..4be29bfeac86 100644
--- a/libatomic/fadd_n.c
+++ b/libatomic/fadd_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/fenv.c b/libatomic/fenv.c
index 435d53a87ad8..103a7397f737 100644
--- a/libatomic/fenv.c
+++ b/libatomic/fenv.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/fop_n.c b/libatomic/fop_n.c
index 4a18da97cc52..307184d429aa 100644
--- a/libatomic/fop_n.c
+++ b/libatomic/fop_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/gcas.c b/libatomic/gcas.c
index 2925b70b28ff..49cff4d4bb5a 100644
--- a/libatomic/gcas.c
+++ b/libatomic/gcas.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/gexch.c b/libatomic/gexch.c
index 49524da656a6..23f27e69b32c 100644
--- a/libatomic/gexch.c
+++ b/libatomic/gexch.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/glfree.c b/libatomic/glfree.c
index 6bc66df60f55..4109770a72a4 100644
--- a/libatomic/glfree.c
+++ b/libatomic/glfree.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/gload.c b/libatomic/gload.c
index 4200337104a2..e8eeae3d014b 100644
--- a/libatomic/gload.c
+++ b/libatomic/gload.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/gstore.c b/libatomic/gstore.c
index 9e15283c868f..f2a3b30f56a4 100644
--- a/libatomic/gstore.c
+++ b/libatomic/gstore.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/host-config.h b/libatomic/host-config.h
index 7c66e83ea915..f6f132e62436 100644
--- a/libatomic/host-config.h
+++ b/libatomic/host-config.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/libatomic_i.h b/libatomic/libatomic_i.h
index eacc5f9d04d3..5706c25f2928 100644
--- a/libatomic/libatomic_i.h
+++ b/libatomic/libatomic_i.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/load_n.c b/libatomic/load_n.c
index 32bcfa5a23c5..c91213862910 100644
--- a/libatomic/load_n.c
+++ b/libatomic/load_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/store_n.c b/libatomic/store_n.c
index 0c4171abe736..2dc7ad24ccfb 100644
--- a/libatomic/store_n.c
+++ b/libatomic/store_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/tas_n.c b/libatomic/tas_n.c
index 1f3e643c92a5..75fd3fa29918 100644
--- a/libatomic/tas_n.c
+++ b/libatomic/tas_n.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2012-2014 Free Software Foundation, Inc.
+/* Copyright (C) 2012-2015 Free Software Foundation, Inc.
Contributed by Richard Henderson <rth@redhat.com>.
This file is part of the GNU Atomic Library (libatomic).
diff --git a/libatomic/testsuite/config/default.exp b/libatomic/testsuite/config/default.exp
index ccfda11bc0b4..d993352caff7 100644
--- a/libatomic/testsuite/config/default.exp
+++ b/libatomic/testsuite/config/default.exp
@@ -1,4 +1,4 @@
-# Copyright (C) 2011-2014 Free Software Foundation, Inc.
+# Copyright (C) 2011-2015 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by