Daily bump.

This commit is contained in:
GCC Administrator 2023-03-21 00:17:02 +00:00
parent ccfca55536
commit 582f246be2
7 changed files with 113 additions and 1 deletions

View file

@ -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>:

View file

@ -1 +1 @@
20230320
20230321

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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

View file

@ -1,3 +1,21 @@
2023-03-20 Jonathan Wakely <jwakely@redhat.com>
* src/filesystem/ops-common.h (get_temp_directory_from_env): Fix
formatting.
2023-03-20 Marek Polacek <polacek@redhat.com>
PR c++/109159
* testsuite/20_util/pair/cons/explicit_construct.cc: Adjust dg-error.
* testsuite/20_util/tuple/cons/explicit_construct.cc: Likewise.
* testsuite/23_containers/span/explicit.cc: Likewise.
2023-03-20 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/109182
* include/std/expected (expected<void>::expected(in_place_t)):
Remove template-head.
2023-03-18 Jonathan Wakely <jwakely@redhat.com>
PR libstdc++/109165