]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 10 Dec 2023 00:16:47 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 10 Dec 2023 00:16:47 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index 2ff57b89c8d7c10d90890ab25faa53277f51fb8e..68754648cbbe8c275c057feeced4f8c2ede0d6c6 100644 (file)
@@ -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
index 98957cde41b6f66bbce10cc4faa1a423a73524b6..19d30f166542ce85a823a3e2a9f0a84943a5873d 100644 (file)
@@ -1 +1 @@
-20231209
+20231210
index 3939154623db251be52e77f68194f1cbcfe4e796..58f84237d7879c3dd8d959a20e0ed0b4f9f17d8a 100644 (file)
@@ -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
index 61cb3fba5d656f3d68f7393747134864cbab8238..73aa606733f74e6520b575aa7bff1b46537721f6 100644 (file)
@@ -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
index 4ffaa9d558b216c74a6215090388468fd33dd3a9..cd9d121374e8996f6ffec92f2a34412539387e67 100644 (file)
@@ -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 ...