diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2025-08-04 00:17:36 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2025-08-04 00:17:36 +0000 |
commit | 10075fb355daaebf8ccabb8932c3400b2efd6101 (patch) | |
tree | 09a3681e3831ba4ac4861ca2d732f1f629047c11 | |
parent | 625d5776f9cd0b09512d7b5e403737ad944f33d3 (diff) | |
download | gcc-10075fb355daaebf8ccabb8932c3400b2efd6101.zip gcc-10075fb355daaebf8ccabb8932c3400b2efd6101.tar.gz gcc-10075fb355daaebf8ccabb8932c3400b2efd6101.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 23 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 10 | ||||
-rw-r--r-- | libcpp/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/ChangeLog | 4 |
5 files changed, 45 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index fec8c7a..d73ba82 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,26 @@ +2025-08-03 Georg-Johann Lay <avr@gjlay.de> + + * config/avr/avr.md (define_insn_and_split) [reload_completed]: + For splits that just append a (clobber (reg:CC REG_CC)) to + the pattern, use avr_add_ccclobber (curr_insn) instead of + repeating the original pattern. + * config/avr/avr-dimode.md: Same. + * config/avr/avr-fixed.md: Same. + +2025-08-03 Georg-Johann Lay <avr@gjlay.de> + + * config/avr/avr.cc (avr_add_ccclobber): New function. + * config/avr/avr-protos.h (avr_add_ccclobber): New proto. + (DONE_ADD_CCC): New define. + +2025-08-03 Richard Biener <rguenther@suse.de> + + PR tree-optimization/90242 + * tree-ssa-sccvn.cc (vn_reference_compute_hash): Use + poly_offset_int for offset accumulation. For hashing + truncate to 64 bits and also hash 64 bits. + (vn_reference_eq): Likewise. + 2025-08-02 Gerald Pfeifer <gerald@pfeifer.com> PR target/69374 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 963d4c7..85faa76 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20250803 +20250804 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index db4d560..b43cbb7 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,13 @@ +2025-08-03 Jakub Jelinek <jakub@redhat.com> + + PR preprocessor/120778 + * g++.dg/DRs/dr1709.C: New test. + +2025-08-03 Jakub Jelinek <jakub@redhat.com> + + PR c++/120845 + * g++.dg/modules/cpp-21.C: New test. + 2025-08-02 Martin Uecker <uecker@tugraz.at> * gcc.dg/Warray-parameter-11.c: Change Warray-parameter to diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index ca67a64..b5188fd 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,10 @@ +2025-08-03 Jakub Jelinek <jakub@redhat.com> + + PR c++/120845 + * lex.cc (cpp_maybe_module_directive): Move eol variable declaration + to the start of the function, initialize to false and only set it to + peek->type == CPP_PRAGMA_EOL in the not_module case. Formatting fix. + 2025-07-30 Jakub Jelinek <jakub@redhat.com> PR c++/120778 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 7f697f2..cd1f142 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2025-08-03 Jakub Jelinek <jakub@redhat.com> + + * src/c++23/std.cc.in (std::owner_equal, std::owner_hash): Export. + 2025-07-30 François Dumont <frs.dumont@gmail.com> * testsuite/std/time/format/data_not_present_neg.cc: Remove _GLIBCXX_USE_DUAL_ABI |