]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 25 Apr 2024 00:16:34 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 25 Apr 2024 00:16:34 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog

index 2dc021f6f5eb6d673ca7779f0d8845a4d197ec5d..418d175df6b681b1a4d20eec0cf67f3fa0666ae7 100644 (file)
@@ -1,3 +1,62 @@
+2024-04-24  Jakub Jelinek  <jakub@redhat.com>
+
+       PR other/114738
+       * opts.cc (get_option_url): Revert 2024-04-17 changes.
+       * gcc-urlifier.cc: Don't include diagnostic-core.h.
+       (gcc_urlifier::make_doc_url): Revert 2024-04-17 changes.
+       * configure.ac (documentation-root-url): On release branches
+       append gcc-MAJOR.MINOR.0/ to the default DOCUMENTATION_ROOT_URL.
+       * doc/install.texi (--with-documentation-root-url=): Document
+       the change of the default.
+       * configure: Regenerate.
+
+2024-04-24  Pan Li  <pan2.li@intel.com>
+
+       Revert:
+       2023-11-29  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+                   kito-cheng  <kito.cheng@sifive.com>
+                   kito-cheng  <kito.cheng@gmail.com>
+
+       PR target/112431
+       * config/riscv/constraints.md (TARGET_VECTOR ? V_REGS : NO_REGS): New register filters.
+       * config/riscv/riscv.md (no,W21,W42,W84,W41,W81,W82): Ditto.
+       (no,yes): Ditto.
+       * config/riscv/vector.md: Support highpart register overlap for vwcvt.
+
+2024-04-24  Jose E. Marchesi  <jose.marchesi@oracle.com>
+
+       * config.gcc: Add bpf-c.o as a target object for C and C++.
+       * config/bpf/bpf.cc (bpf_target_macros): Move to bpf-c.cc.
+       * config/bpf/bpf-c.cc: New file.
+       (bpf_target_macros): Move from bpf.cc and define BPF CPU
+       feature macros.
+       * config/bpf/t-bpf: Add rules to build bpf-c.o.
+
+2024-04-24  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/114787
+       * tree-cfg.cc (remove_edge_and_dominated_blocks): When
+       removing a loop backedge clear niter info and when removing
+       the last backedge of a loop mark that loop for removal.
+
+2024-04-24  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/114832
+       * tree-vect-loop-manip.cc (slpeel_tree_duplicate_loop_to_edge_cfg):
+       Fix dominance check.
+
+2024-04-24  Haochen Jiang  <haochen.jiang@intel.com>
+
+       * config/i386/i386-options.cc (ix86_valid_target_attribute_tree):
+       Check whether AVX512F is explicitly enabled.
+
+2024-04-24  Pan Li  <pan2.li@intel.com>
+
+       Revert:
+       2023-11-30  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       * config/riscv/vector.md: Support highpart overlap for vext.vf2
+
 2024-04-23  Jakub Jelinek  <jakub@redhat.com>
 
        PR target/114810
index de7a64b42d704f3049b173610459366b6cd87655..57aa6c58cc7c61c71f3364271cdc5ad34fea9146 100644 (file)
@@ -1 +1 @@
-20240424
+20240425
index 4d42b8bbb81782099d4f582befa09081cc58996a..e8948eb8268bb414e912ea6e89332ee8667b1902 100644 (file)
@@ -1,3 +1,9 @@
+2024-04-24  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/114709
+       * constexpr.cc (cxx_fold_indirect_ref): Restrict object/offset
+       canonicalization to RECORD_TYPE member accesses.
+
 2024-04-23  Nathaniel Shead  <nathanieloshead@gmail.com>
 
        * parser.cc (cp_parser_parameter_declaration): Check if
index f00258e1ec47cb689cc8d4cb4a2514462c2268da..f5bea8219cafa1b4be758ee0d13053aeb027a819 100644 (file)
@@ -1,3 +1,62 @@
+2024-04-24  Patrick Palka  <ppalka@redhat.com>
+
+       * g++.dg/modules/pr99023_a.X: Run only in C++20 mode.
+       * g++.dg/modules/pr99023_b.X: Likewise.
+
+2024-04-24  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/114709
+       * g++.dg/cpp0x/constexpr-union8.C: New test.
+
+2024-04-24  Pan Li  <pan2.li@intel.com>
+
+       Revert:
+       2024-04-24  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+                   kito-cheng  <kito.cheng@sifive.com>
+                   kito-cheng  <kito.cheng@gmail.com>
+
+       PR target/112431
+       * gcc.target/riscv/rvv/base/pr112431-1.c: New test.
+       * gcc.target/riscv/rvv/base/pr112431-2.c: New test.
+       * gcc.target/riscv/rvv/base/pr112431-3.c: New test.
+
+2024-04-24  Jose E. Marchesi  <jose.marchesi@oracle.com>
+
+       * gcc.target/bpf/feature-macro-1.c: New test.
+       * gcc.target/bpf/feature-macro-2.c: Likewise.
+
+2024-04-24  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/114787
+       * gcc.dg/torture/pr114787.c: New testcase.
+
+2024-04-24  Richard Biener  <rguenther@suse.de>
+
+       PR tree-optimization/114832
+       * gcc.dg/vect/pr114832.c: New testcase.
+
+2024-04-24  Haochen Jiang  <haochen.jiang@intel.com>
+
+       * gcc.target/i386/avx10_1-24.c: New test.
+
+2024-04-24  Pan Li  <pan2.li@intel.com>
+
+       * gcc.target/riscv/rvv/base/unop_v_constraint-2.c: Adjust asm
+       check cond.
+       * gcc.target/riscv/rvv/base/pr112431-4.c: New test.
+       * gcc.target/riscv/rvv/base/pr112431-5.c: New test.
+       * gcc.target/riscv/rvv/base/pr112431-6.c: New test.
+
+2024-04-24  Pan Li  <pan2.li@intel.com>
+
+       Revert:
+       2024-04-24  Juzhe-Zhong  <juzhe.zhong@rivai.ai>
+
+       * gcc.target/riscv/rvv/base/unop_v_constraint-2.c: Adapt test.
+       * gcc.target/riscv/rvv/base/pr112431-4.c: New test.
+       * gcc.target/riscv/rvv/base/pr112431-5.c: New test.
+       * gcc.target/riscv/rvv/base/pr112431-6.c: New test.
+
 2024-04-23  Nathaniel Shead  <nathanieloshead@gmail.com>
 
        * g++.dg/cpp23/explicit-obj-basic7.C: New test.