aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorGCC Administrator <gccadmin@gcc.gnu.org>2024-04-25 00:16:34 +0000
committerGCC Administrator <gccadmin@gcc.gnu.org>2024-04-25 00:16:34 +0000
commit5123cfa629b6423ee0cd08d18402a261dbc31ac7 (patch)
tree8b9b44e874c52cabab3c4a811a391c9d811bed78 /gcc
parent26a3edbe2357cf975f345ad1b59b9f9a3444316e (diff)
downloadgcc-5123cfa629b6423ee0cd08d18402a261dbc31ac7.zip
gcc-5123cfa629b6423ee0cd08d18402a261dbc31ac7.tar.gz
gcc-5123cfa629b6423ee0cd08d18402a261dbc31ac7.tar.bz2
Daily bump.
Diffstat (limited to 'gcc')
-rw-r--r--gcc/ChangeLog59
-rw-r--r--gcc/DATESTAMP2
-rw-r--r--gcc/cp/ChangeLog6
-rw-r--r--gcc/testsuite/ChangeLog59
4 files changed, 125 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 2dc021f..418d175 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -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
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index de7a64b..57aa6c5 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20240424
+20240425
diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog
index 4d42b8b..e8948eb 100644
--- a/gcc/cp/ChangeLog
+++ b/gcc/cp/ChangeLog
@@ -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
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index f00258e..f5bea82 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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.