diff options
author | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-12-10 00:16:47 +0000 |
---|---|---|
committer | GCC Administrator <gccadmin@gcc.gnu.org> | 2023-12-10 00:16:47 +0000 |
commit | fbfe43daec6443978df65530dc5f7f3f8a4e6f9e (patch) | |
tree | f80732667f7d6e5976a32c2079685f9f818625c2 | |
parent | c250ff90989a71dff11e9256e99d2fa965ab1295 (diff) | |
download | gcc-fbfe43daec6443978df65530dc5f7f3f8a4e6f9e.zip gcc-fbfe43daec6443978df65530dc5f7f3f8a4e6f9e.tar.gz gcc-fbfe43daec6443978df65530dc5f7f3f8a4e6f9e.tar.bz2 |
Daily bump.
-rw-r--r-- | gcc/ChangeLog | 29 | ||||
-rw-r--r-- | gcc/DATESTAMP | 2 | ||||
-rw-r--r-- | gcc/cp/ChangeLog | 9 | ||||
-rw-r--r-- | gcc/testsuite/ChangeLog | 26 | ||||
-rw-r--r-- | libstdc++-v3/ChangeLog | 15 |
5 files changed, 80 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2ff57b8..6875464 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,32 @@ +2023-12-09 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/112887 + * tree-ssa-phiopt.cc (hoist_adjacent_loads): Change type of + param_align, param_align_bits, offset1, offset2, size2 and align1 + variables from int or unsigned int to unsigned HOST_WIDE_INT. + +2023-12-09 Costas Argyris <costas.argyris@gmail.com> + Jakub Jelinek <jakub@redhat.com> + + PR driver/93019 + * gcc.cc (driver::finalize): Call XDELETEVEC on mdswitches before + clearing it. + +2023-12-09 Jakub Jelinek <jakub@redhat.com> + + * attribs.h (any_nonignored_attribute_p): Declare. + * attribs.cc (any_nonignored_attribute_p): New function. + +2023-12-09 Juzhe-Zhong <juzhe.zhong@rivai.ai> + + PR target/112932 + * config/riscv/vector.md (movmisalign<mode>): Fix VLSmode bugs. + +2023-12-09 Alexandre Oliva <oliva@adacore.com> + + * tree-emutls.cc: Include diagnostic-core.h. + (pass_ipa_lower_emutls::gate): Skip if errors were seen. + 2023-12-08 Vladimir N. Makarov <vmakarov@redhat.com> PR rtl-optimization/112875 diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 98957cd..19d30f1 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20231209 +20231210 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 3939154..58f8423 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,12 @@ +2023-12-09 Jakub Jelinek <jakub@redhat.com> + + * parser.cc (cp_parser_statement, cp_parser_expression_statement, + cp_parser_declaration, cp_parser_asm_definition): Don't diagnose + ignored attributes if !any_nonignored_attribute_p. + * decl.cc (grokdeclarator): Likewise. + * name-lookup.cc (handle_namespace_attrs, finish_using_directive): + Don't diagnose ignoring of attr_ignored_p attributes. + 2023-12-08 Patrick Palka <ppalka@redhat.com> PR c++/83167 diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 61cb3fb..73aa606 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,29 @@ +2023-12-09 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/112887 + * gcc.dg/pr112887.c: New test. + +2023-12-09 Jakub Jelinek <jakub@redhat.com> + + PR tree-optimization/112924 + * gcc.dg/pr112924.c: New test. + +2023-12-09 Jakub Jelinek <jakub@redhat.com> + + * g++.dg/warn/Wno-attributes-1.C: New test. + +2023-12-09 Juzhe-Zhong <juzhe.zhong@rivai.ai> + + PR target/112932 + * gcc.target/riscv/rvv/autovec/vls/misalign-1.c: Ditto. + * gcc.target/riscv/rvv/autovec/pr112932.c: New test. + +2023-12-09 Hans-Peter Nilsson <hp@axis.com> + + PR testsuite/112786 + * gcc.dg/tree-ssa/scev-3.c, gcc.dg/tree-ssa/scev-4.c, + gcc.dg/tree-ssa/scev-5.c: Remove. + 2023-12-08 Patrick Palka <ppalka@redhat.com> PR c++/83167 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 4ffaa9d..cd9d121 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,18 @@ +2023-12-09 Jonathan Wakely <jwakely@redhat.com> + + PR libstdc++/111826 + * include/bits/version.def (format): Update value. + * include/bits/version.h: Regenerate. + * testsuite/std/format/functions/format.cc: + +2023-12-09 Jonathan Wakely <jwakely@redhat.com> + + PR libstdc++/112876 + * include/std/ranges (ranges::to): Do not try to use an iterator + returned by the container's emplace or insert member functions. + * testsuite/std/ranges/conv/1.cc (Cont4::emplace, Cont4::insert): + Use the iterator parameter. Do not return an iterator. + 2023-12-07 Patrick Palka <ppalka@redhat.com> * include/std/ranges (__detail::_ToClosure): Replace with ... |