aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog5
-rw-r--r--gcc/brig/ChangeLog4
-rw-r--r--gcc/brig/config-lang.in2
-rw-r--r--gcc/builtin-types.def4
-rw-r--r--gcc/testsuite/ChangeLog2
5 files changed, 13 insertions, 4 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index c70fb93..0a55378 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,8 @@
+2017-01-27 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
+
+ * builtin-types.def: Use unsigned_char_type_node for BT_UINT8. Use
+ uint16_type_node for BT_UINT16.
+
2017-01-27 David Malcolm <dmalcolm@redhat.com>
* doc/sourcebuild.texi (Testsuites): Add "GIMPLE Tests" and
diff --git a/gcc/brig/ChangeLog b/gcc/brig/ChangeLog
index d947c5a..2906f50 100644
--- a/gcc/brig/ChangeLog
+++ b/gcc/brig/ChangeLog
@@ -1,3 +1,7 @@
+2017-01-27 Pekka Jääskeläinen <pekka.jaaskelainen@parmance.com>
+
+ * config-lang.in: Removed stale target-libbrig reference.
+
2017-01-26 Jakub Jelinek <jakub@redhat.com>
Update copyright years.
diff --git a/gcc/brig/config-lang.in b/gcc/brig/config-lang.in
index ab139b3..e390a16 100644
--- a/gcc/brig/config-lang.in
+++ b/gcc/brig/config-lang.in
@@ -28,7 +28,7 @@ language="brig"
compilers="brig1\$(exeext)"
-target_libs="target-libbrig target-libhsail-rt"
+target_libs="target-libhsail-rt"
# The BRIG frontend is written in C++, so we need to build the C++
# compiler during stage 1. Note: when cross-compiling / not bootstrapping,
diff --git a/gcc/builtin-types.def b/gcc/builtin-types.def
index ee6d052..ac98944 100644
--- a/gcc/builtin-types.def
+++ b/gcc/builtin-types.def
@@ -69,8 +69,8 @@ DEF_PRIMITIVE_TYPE (BT_INTMAX, intmax_type_node)
DEF_PRIMITIVE_TYPE (BT_UINTMAX, uintmax_type_node)
DEF_PRIMITIVE_TYPE (BT_INT8, signed_char_type_node)
DEF_PRIMITIVE_TYPE (BT_INT16, short_integer_type_node)
-DEF_PRIMITIVE_TYPE (BT_UINT8, char_type_node)
-DEF_PRIMITIVE_TYPE (BT_UINT16, short_unsigned_type_node)
+DEF_PRIMITIVE_TYPE (BT_UINT8, unsigned_char_type_node)
+DEF_PRIMITIVE_TYPE (BT_UINT16, uint16_type_node)
DEF_PRIMITIVE_TYPE (BT_UINT32, uint32_type_node)
DEF_PRIMITIVE_TYPE (BT_UINT64, uint64_type_node)
DEF_PRIMITIVE_TYPE (BT_WORD, (*lang_hooks.types.type_for_mode) (word_mode, 1))
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 5a68e58..e3ad4ca 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -273,7 +273,7 @@
PR tree-optimization/79159
* g++.dg/tree-ssa/pr79159.C: New test.
-2017-01-24 Pekka Jääskeläinen <pekka@parmance.com>
+2017-01-24 Pekka Jääskeläinen <pekka@parmance.com>
Martin Jambor <mjambor@suse.cz>
* lib/brig-dg.exp: New file.