summaryrefslogtreecommitdiff
path: root/libhsail-rt
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@gcc.gnu.org>2019-01-01 13:31:55 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2019-01-01 13:31:55 +0100
commita5544970246db337977bb8b69ab120e9ef209317 (patch)
tree91c8dfebf7c0b4945090e82c03dce7f5b6a987ec /libhsail-rt
parentb5fcfdba9a81e15f7d85ce8a5240a4a8a2730b2b (diff)
Update copyright years.
From-SVN: r267494
Diffstat (limited to 'libhsail-rt')
-rw-r--r--libhsail-rt/ChangeLog6
-rw-r--r--libhsail-rt/configure.tgt2
-rw-r--r--libhsail-rt/include/internal/fibers.h2
-rw-r--r--libhsail-rt/include/internal/phsa-queue-interface.h2
-rw-r--r--libhsail-rt/include/internal/phsa-rt.h2
-rw-r--r--libhsail-rt/include/internal/workitems.h2
-rw-r--r--libhsail-rt/rt/arithmetic.c2
-rw-r--r--libhsail-rt/rt/atomics.c2
-rw-r--r--libhsail-rt/rt/bitstring.c2
-rw-r--r--libhsail-rt/rt/fbarrier.c2
-rw-r--r--libhsail-rt/rt/fibers.c4
-rw-r--r--libhsail-rt/rt/fp16.c2
-rw-r--r--libhsail-rt/rt/misc.c2
-rw-r--r--libhsail-rt/rt/multimedia.c2
-rw-r--r--libhsail-rt/rt/queue.c2
-rw-r--r--libhsail-rt/rt/sat_arithmetic.c2
-rw-r--r--libhsail-rt/rt/segment.c2
-rw-r--r--libhsail-rt/rt/workitems.c2
18 files changed, 23 insertions, 19 deletions
diff --git a/libhsail-rt/ChangeLog b/libhsail-rt/ChangeLog
index 8f547e92da5..5f653fcef71 100644
--- a/libhsail-rt/ChangeLog
+++ b/libhsail-rt/ChangeLog
@@ -1,3 +1,7 @@
+2019-01-01 Jakub Jelinek <jakub@redhat.com>
+
+ Update copyright years.
+
2018-10-31 Joseph Myers <joseph@codesourcery.com>
PR bootstrap/82856
@@ -125,7 +129,7 @@
* rt/segment.c: Likewise.
* rt/workitems.c: Likewise.
-Copyright (C) 2017-2018 Free Software Foundation, Inc.
+Copyright (C) 2017-2019 Free Software Foundation, Inc.
Copying and distribution of this file, with or without modification,
are permitted in any medium without royalty provided the copyright
diff --git a/libhsail-rt/configure.tgt b/libhsail-rt/configure.tgt
index e5207eb7bd3..1ea28429ffe 100644
--- a/libhsail-rt/configure.tgt
+++ b/libhsail-rt/configure.tgt
@@ -1,5 +1,5 @@
# -*- shell-script -*-
-# Copyright (C) 2012-2018 Free Software Foundation, Inc.
+# Copyright (C) 2012-2019 Free Software Foundation, Inc.
# Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
# for General Processor Tech.
#
diff --git a/libhsail-rt/include/internal/fibers.h b/libhsail-rt/include/internal/fibers.h
index f5ba127ab8f..fcd2a121368 100644
--- a/libhsail-rt/include/internal/fibers.h
+++ b/libhsail-rt/include/internal/fibers.h
@@ -1,5 +1,5 @@
/* fibers.h -- an extremely simple lightweight thread (fiber) implementation
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/include/internal/phsa-queue-interface.h b/libhsail-rt/include/internal/phsa-queue-interface.h
index 53397539009..67e4f172e34 100644
--- a/libhsail-rt/include/internal/phsa-queue-interface.h
+++ b/libhsail-rt/include/internal/phsa-queue-interface.h
@@ -2,7 +2,7 @@
representation of a user mode queue to be used with the phsa/gccbrig
implementation.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/include/internal/phsa-rt.h b/libhsail-rt/include/internal/phsa-rt.h
index c09f18d0095..4432b1888e9 100644
--- a/libhsail-rt/include/internal/phsa-rt.h
+++ b/libhsail-rt/include/internal/phsa-rt.h
@@ -1,7 +1,7 @@
/* phsa-rt.h -- Data structures and functions of the PHSA device side runtime
scheduler, and HSAIL built-ins.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/include/internal/workitems.h b/libhsail-rt/include/internal/workitems.h
index 0839853ff12..3b00b8317f8 100644
--- a/libhsail-rt/include/internal/workitems.h
+++ b/libhsail-rt/include/internal/workitems.h
@@ -1,7 +1,7 @@
/* workitems.h -- Types for context data passed as hidden parameters to special
built-ins.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/arithmetic.c b/libhsail-rt/rt/arithmetic.c
index 520d355f8bf..ee446abcf1a 100644
--- a/libhsail-rt/rt/arithmetic.c
+++ b/libhsail-rt/rt/arithmetic.c
@@ -1,7 +1,7 @@
/* arithmetic.c -- Builtins for HSAIL arithmetic instructions for which
there is no feasible direct gcc GENERIC expression.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/atomics.c b/libhsail-rt/rt/atomics.c
index 4d3f197f617..8cf08b0889b 100644
--- a/libhsail-rt/rt/atomics.c
+++ b/libhsail-rt/rt/atomics.c
@@ -1,7 +1,7 @@
/* atomic.c -- Builtins for HSAIL atomic instructions for which
there is no feasible direct gcc GENERIC expression.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/bitstring.c b/libhsail-rt/rt/bitstring.c
index b38b7164fae..03254b1b734 100644
--- a/libhsail-rt/rt/bitstring.c
+++ b/libhsail-rt/rt/bitstring.c
@@ -1,6 +1,6 @@
/* bitstring.c -- Builtins for HSAIL bitstring instructions.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/fbarrier.c b/libhsail-rt/rt/fbarrier.c
index df6d0e8c3b9..d7aea57b182 100644
--- a/libhsail-rt/rt/fbarrier.c
+++ b/libhsail-rt/rt/fbarrier.c
@@ -1,6 +1,6 @@
/* fbarrier.c -- HSAIL fbarrier built-ins.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/fibers.c b/libhsail-rt/rt/fibers.c
index 96ae3052522..cbd0bdf7618 100644
--- a/libhsail-rt/rt/fibers.c
+++ b/libhsail-rt/rt/fibers.c
@@ -1,9 +1,9 @@
/* fibers.c -- extremely simple lightweight thread (fiber) implementation
- Copyright (C) 2016-2018 Free Software Foundation, Inc.
+ Copyright (C) 2016-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/fp16.c b/libhsail-rt/rt/fp16.c
index aec1bc1fdc4..227f0e48d66 100644
--- a/libhsail-rt/rt/fp16.c
+++ b/libhsail-rt/rt/fp16.c
@@ -1,7 +1,7 @@
/* Half-float conversion routines. Code mostly borrowed from the ARM's
builtin function.
- Copyright (C) 2008-2018 Free Software Foundation, Inc.
+ Copyright (C) 2008-2019 Free Software Foundation, Inc.
Contributed by CodeSourcery.
This file is free software; you can redistribute it and/or modify it
diff --git a/libhsail-rt/rt/misc.c b/libhsail-rt/rt/misc.c
index de0c3384d8a..9a2cfc02039 100644
--- a/libhsail-rt/rt/misc.c
+++ b/libhsail-rt/rt/misc.c
@@ -1,6 +1,6 @@
/* misc.c -- Builtins for HSAIL misc instructions.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/multimedia.c b/libhsail-rt/rt/multimedia.c
index ae66fcddf4d..0033faf9c8c 100644
--- a/libhsail-rt/rt/multimedia.c
+++ b/libhsail-rt/rt/multimedia.c
@@ -1,6 +1,6 @@
/* multimedia.c -- Builtins for HSAIL multimedia instructions.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/queue.c b/libhsail-rt/rt/queue.c
index fc2533f0032..058136212c0 100644
--- a/libhsail-rt/rt/queue.c
+++ b/libhsail-rt/rt/queue.c
@@ -1,6 +1,6 @@
/* queue.c -- Builtins for HSAIL queue related instructions.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/sat_arithmetic.c b/libhsail-rt/rt/sat_arithmetic.c
index 883da99d11f..91631aa8c2b 100644
--- a/libhsail-rt/rt/sat_arithmetic.c
+++ b/libhsail-rt/rt/sat_arithmetic.c
@@ -1,6 +1,6 @@
/* sat_arithmetic.c -- Builtins for HSAIL saturating arithmetic instructions.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/segment.c b/libhsail-rt/rt/segment.c
index a0d76e05ea3..6bb93154d6a 100644
--- a/libhsail-rt/rt/segment.c
+++ b/libhsail-rt/rt/segment.c
@@ -1,6 +1,6 @@
/* segment.c -- Builtins for HSAIL segment related instructions.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.
diff --git a/libhsail-rt/rt/workitems.c b/libhsail-rt/rt/workitems.c
index c846350e1cd..033845cb409 100644
--- a/libhsail-rt/rt/workitems.c
+++ b/libhsail-rt/rt/workitems.c
@@ -2,7 +2,7 @@
various ways and the builtin functions closely related to the
implementation.
- Copyright (C) 2015-2018 Free Software Foundation, Inc.
+ Copyright (C) 2015-2019 Free Software Foundation, Inc.
Contributed by Pekka Jaaskelainen <pekka.jaaskelainen@parmance.com>
for General Processor Tech.