aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2023-03-21 00:17:02 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2023-03-21 00:17:02 +0000
commit582f246be2de53e29d483ba642791a56923e2ebd (patch)
treee1355e9a0cdeb624c4cabcdb495734ea6368705c /gcc
parentccfca55536f87a1332f844efcc66b8383030d149 (diff)
downloadgcc-582f246be2de53e29d483ba642791a56923e2ebd.zip
gcc-582f246be2de53e29d483ba642791a56923e2ebd.tar.gz
gcc-582f246be2de53e29d483ba642791a56923e2ebd.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog16
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog14
-rw-r--r--gcc/fortran/ChangeLog19
-rw-r--r--gcc/po/ChangeLog4
-rw-r--r--gcc/testsuite/ChangeLog41
6 files changed, 95 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 938616c..2896c48 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,19 @@
+2023-03-20 Michael Meissner <meissner@linux.ibm.com>
+
+ PR target/109067
+ * config/rs6000/rs6000.cc (create_complex_muldiv): Delete.
+ (init_float128_ieee): Delete code to switch complex multiply and divide
+ for long double.
+ (complex_multiply_builtin_code): New helper function.
+ (complex_divide_builtin_code): Likewise.
+ (rs6000_mangle_decl_assembler_name): Add support for mangling the name
+ of complex 128-bit multiply and divide built-in functions.
+
+2023-03-20 Peter Bergner <bergner@linux.ibm.com>
+
+ PR target/109178
+ * config/rs6000/rs6000-builtin.cc (stv_expand_builtin): Use tmode.
+
2023-03-19 Jonny Grant <jg@jguk.org>
* doc/extend.texi (Common Function Attributes) <nonnull>:
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index ad75bcf..b664e28 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20230320
+20230321
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 69616ed..8bd1655 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -1,3 +1,17 @@
+2023-03-20 Marek Polacek <polacek@redhat.com>
+
+ PR c++/109159
+ * call.cc (add_template_candidate_real): Add explicit decls to the
+ set of candidates when the initializer is a braced-init-list.
+
+2023-03-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/109164
+ * cp-tree.h (var_needs_tls_wrapper): Declare.
+ * decl2.cc (var_needs_tls_wrapper): No longer static.
+ * decl.cc (cp_finish_decl): Clear TREE_READONLY on TLS variables
+ for which a TLS wrapper will be needed.
+
2023-03-17 Jason Merrill <jason@redhat.com>
PR c++/108975
diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog
index 6521504..b19cf77 100644
--- a/gcc/fortran/ChangeLog
+++ b/gcc/fortran/ChangeLog
@@ -1,3 +1,22 @@
+2023-03-20 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/109216
+ * invoke.texi: Correct documentation of how underscores are appended
+ to external names.
+
+2023-03-20 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/109186
+ * simplify.cc (gfc_simplify_nearest): Fix off-by-one error in setting
+ up real kind-specific maximum exponent for mpfr.
+
+2023-03-20 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/87127
+ * resolve.cc (check_host_association): If an external function
+ is typed but not declared explicitly to be external, change the
+ old symbol from a variable to an external function.
+
2023-03-19 Harald Anlauf <anlauf@gmx.de>
PR fortran/85877
diff --git a/gcc/po/ChangeLog b/gcc/po/ChangeLog
index dd278c9..5d12caf 100644
--- a/gcc/po/ChangeLog
+++ b/gcc/po/ChangeLog
@@ -1,3 +1,7 @@
+2023-03-20 Joseph Myers <joseph@codesourcery.com>
+
+ * sv.po: Update.
+
2023-03-13 Joseph Myers <joseph@codesourcery.com>
* sv.po: Update.
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index c019b3f..07018f0 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,44 @@
+2023-03-20 Marek Polacek <polacek@redhat.com>
+
+ PR c++/109159
+ * g++.dg/cpp0x/explicit16.C: New test.
+
+2023-03-20 Jakub Jelinek <jakub@redhat.com>
+
+ PR c++/109164
+ * g++.dg/tls/thread_local13.C: New test.
+ * g++.dg/tls/thread_local13-aux.cc: New file.
+ * g++.dg/tls/thread_local14.C: New test.
+ * g++.dg/tls/thread_local14-aux.cc: New file.
+
+2023-03-20 Michael Meissner <meissner@linux.ibm.com>
+
+ PR target/109067
+ * gcc.target/powerpc/divic3-1.c: New test.
+ * gcc.target/powerpc/divic3-2.c: Likewise.
+ * gcc.target/powerpc/mulic3-1.c: Likewise.
+ * gcc.target/powerpc/mulic3-2.c: Likewise.
+
+2023-03-20 Harald Anlauf <anlauf@gmx.de>
+
+ PR fortran/109186
+ * gfortran.dg/nearest_6.f90: New test.
+
+2023-03-20 Peter Bergner <bergner@linux.ibm.com>
+
+ PR target/109178
+ * gcc.target/powerpc/pr109178.c: New test.
+
+2023-03-20 Jakub Jelinek <jakub@redhat.com>
+
+ * g++.dg/torture/20230313.C (auto_vec): Change m_data type
+ from char to char [2 * sizeof (int)].
+
+2023-03-20 Paul Thomas <pault@gcc.gnu.org>
+
+ PR fortran/87127
+ * gfortran.dg/external_procedures_4.f90: New test.
+
2023-03-19 Harald Anlauf <anlauf@gmx.de>
PR fortran/85877