diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-10-27 00:17:28 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2024-10-27 00:17:28 +0000 |
commit | ab78ee298864b5db8fb81e263fc0d64bfd8f082d (patch) | |
tree | 3fba633ee8768fe6dce1e49e7eb03da65a2d213a | |
parent | f6e93484be58065a3e8c3746387884866b985134 (diff) | |
download | gcc-ab78ee298864b5db8fb81e263fc0d64bfd8f082d.zip gcc-ab78ee298864b5db8fb81e263fc0d64bfd8f082d.tar.gz gcc-ab78ee298864b5db8fb81e263fc0d64bfd8f082d.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 27 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/ada/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/fortran/ChangeLog | 13 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 14 |
5 files changed, 62 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index db5fbed..b9bfa5d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,30 @@ +2024-10-26 Andrew Pinski <quic_apinski@quicinc.com> + + PR tree-optimization/117234 + * tree-eh.cc (operation_could_trap_helper_p): Treat + PAREN_EXPR and VEC_DUPLICATE_EXPR like constructing + expressions. + +2024-10-26 Richard Biener <rguenther@suse.de> + + * tree-vect-slp.cc (vect_get_operand_map): Mark + COMPARISON_CLASS_P COND_EXPR condition path unreachable. + * tree-vect-stmts.cc (vect_is_simple_use): Likewise. + (vectorizable_condition): Assert the COND_EXPR condition isn't + COMPARISON_CLASS_P. + +2024-10-26 Richard Biener <rguenther@suse.de> + + * tree-vect-patterns.cc (vect_recog_ctz_ffs_pattern): Create + a separate pattern stmt for the comparison in the generated + COND_EXPR. + +2024-10-26 Richard Biener <rguenther@suse.de> + + * tree-vect-patterns.cc (vect_recog_divmod_pattern): Build + separate comparion pattern for the condition of a COND_EXPR + pattern. + 2024-10-25 Andrew Pinski <quic_apinski@quicinc.com> PR rtl-optimization/58195 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 7125d77..484ce9b 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20241026 +20241027 diff --git a/gcc/ada/ChangeLog b/gcc/ada/ChangeLog index 555fcc2..b12bd40 100644 --- a/gcc/ada/ChangeLog +++ b/gcc/ada/ChangeLog @@ -1,3 +1,10 @@ +2024-10-26 Eric Botcazou <ebotcazou@adacore.com> + + PR ada/62122 + * doc/gnat_rm/implementation_defined_attributes.rst + (Unrestricted_Access): Remove null exclusion. + * gnat_rm.texi: Regenerate. + 2024-10-25 Tom Tromey <tromey@adacore.com> * gcc-interface/decl.cc (gnat_to_gnu_entity): Use gnu_fat_type as the type diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 20895cd..6de40b3 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,16 @@ +2024-10-26 Iain Sandoe <iain@sandoe.co.uk> + + * intrinsic.texi: Add menu item for UINT. + +2024-10-26 Thomas Koenig <tkoenig@gcc.gnu.org> + + * gfortran.texi: Correct reference to make clear that UNSIGNED + will not be part of F202Y. + Other clarifications. + Extend table of intrinsics, add links. + * intrinsic.texi: Add descriptions for UNSIGNED arguments. + * invoke.texi: Add anchor for -funsigned. + 2024-10-25 Paul Thomas <pault@gcc.gnu.org> PR fortran/79685 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a75921d..428d615 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,17 @@ +2024-10-26 Andrew Pinski <quic_apinski@quicinc.com> + + PR tree-optimization/117234 + * g++.dg/eh/noncall-fp-1.C: New test. + * g++.target/aarch64/sve/noncall-eh-fp-1.C: New test. + * gcc.dg/tree-ssa/trapping-1.c: New test. + * gcc.target/aarch64/sve/trapping-1.c: New test. + +2024-10-26 Sam James <sam@gentoo.org> + + PR testsuite/117299 + * gcc.dg/lto/tbaa_0.c: Move to... + * gcc.dg/tbaa.c: ...here. + 2024-10-25 Andrew Pinski <quic_apinski@quicinc.com> PR rtl-optimization/58195 |