diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-01-14 00:17:47 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-01-14 00:17:47 +0000 |
commit | ed5bf2080c538b63459891dbd8f217823f7c6127 (patch) | |
tree | 83e8c60479748c46a141fa9dc627fbcccb80e703 /gcc | |
parent | 20da56165273c8814b3c53e6d71549ba6a37e0cd (diff) | |
download | gcc-ed5bf2080c538b63459891dbd8f217823f7c6127.zip gcc-ed5bf2080c538b63459891dbd8f217823f7c6127.tar.gz gcc-ed5bf2080c538b63459891dbd8f217823f7c6127.tar.bz2 |
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 24 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 44 |
5 files changed, 81 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index dd5f765..22e93a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2024-01-13 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/113361 + * gimple-lower-bitint.cc (bitint_large_huge::handle_operand_addr): + Fix up determination of the type for > limb_prec constants. + 2024-01-12 Georg-Johann Lay <avr@gjlay.de> * doc/extend.texi (AVR Named Address Spaces, Limitations and Caveats): diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index f550188..5dee0b2 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240113 +20240114 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 69883bf..3c085f5 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2024-01-13 Jakub Jelinek <jakub@redhat.com> + + * mangle.cc (write_nested_name): Mangle explicit object + member functions with H as per + https://github.com/itanium-cxx-abi/cxx-abi/issues/148 non-proposal. + 2024-01-12 Jason Merrill <jason@redhat.com> PR c++/113038 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 757e515..7f853a1 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,27 @@ +2024-01-13 Harald Anlauf <anlauf@gmx.de> + + PR fortran/67277 + * trans-intrinsic.cc (gfc_conv_intrinsic_ishftc): Handle optional + dummy argument for SIZE passed to ISHFTC. Set default value to + BIT_SIZE(I) when missing. + +2024-01-13 Harald Anlauf <anlauf@gmx.de> + + PR fortran/113305 + * gfortran.h (gfc_loop_annot): New. + (gfc_iterator, gfc_forall_iterator): Use for annotation control. + * array.cc (gfc_copy_iterator): Adjust. + * gfortran.texi: Document annotations IVDEP, UNROLL n, VECTOR, + NOVECTOR as applied to DO CONCURRENT. + * parse.cc (parse_do_block): Parse annotations IVDEP, UNROLL n, + VECTOR, NOVECTOR as applied to DO CONCURRENT. Apply UNROLL only to + first loop control variable. + * trans-stmt.cc (iter_info): Use gfc_loop_annot. + (gfc_trans_simple_do): Adjust. + (gfc_trans_forall_loop): Annotate loops with IVDEP, UNROLL n, + VECTOR, NOVECTOR as needed for DO CONCURRENT. + (gfc_trans_forall_1): Handle loop annotations. + 2024-01-08 Harald Anlauf <anlauf@gmx.de> PR fortran/113245 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5fc14bf..16cc506 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,47 @@ +2024-01-13 Harald Anlauf <anlauf@gmx.de> + + PR fortran/67277 + * gfortran.dg/ishftc_optional_size_1.f90: New test. + +2024-01-13 John David Anglin <danglin@gcc.gnu.org> + + * gfortran.dg/fmt_f_default_field_width_3.f90: Add hppa*64*-*-hpux* + to real_16 dg-error targets. + * gfortran.dg/fmt_g_default_field_width_3.f90: Likewise. + +2024-01-13 Harald Anlauf <anlauf@gmx.de> + + PR fortran/113305 + * gfortran.dg/do_concurrent_7.f90: New test. + +2024-01-13 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/113361 + * gcc.dg/torture/bitint-47.c: New test. + +2024-01-13 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/113287 + * gcc.dg/vect/vect-early-break_100-pr113287.c: Use long long instead + of long. + +2024-01-13 Jakub Jelinek <jakub@redhat.com> + + * g++.dg/abi/mangle79.C: New test. + +2024-01-13 Andrew Pinski <quic_apinski@quicinc.com> + + PR tree-optimization/107823 + PR tree-optimization/110768 + PR tree-optimization/110941 + PR tree-optimization/110450 + PR tree-optimization/110841 + * gcc.dg/tree-ssa/ssa-thread-22.c: New test. + * gcc.dg/tree-ssa/vrp-loop-1.c: New test. + * gcc.dg/tree-ssa/vrp-loop-2.c: New test. + * gcc.dg/tree-ssa/vrp-unreachable-1.c: New test. + * gcc.dg/tree-ssa/vrp-unreachable-2.c: New test. + 2024-01-12 Jason Merrill <jason@redhat.com> PR c++/113038 |