summaryrefslogtreecommitdiff
path: root/libhsail-rt/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/rt
parentb5fcfdba9a81e15f7d85ce8a5240a4a8a2730b2b (diff)
downloadgcc-a5544970246db337977bb8b69ab120e9ef209317.tar.gz
Update copyright years.
From-SVN: r267494
Diffstat (limited to 'libhsail-rt/rt')
-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
12 files changed, 13 insertions, 13 deletions
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.