[gcc r15-4728] Daily bump.

2024-10-28 Thread GCC Administrator via Libstdc++-cvs
https://gcc.gnu.org/g:87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32

commit r15-4728-g87fa88222ff0c7f8b2ca3a480f41fc4e826cdf32
Author: GCC Administrator 
Date:   Tue Oct 29 00:18:25 2024 +

Daily bump.

Diff:
---
 ChangeLog   |  5 +
 gcc/ChangeLog   | 59 +
 gcc/DATESTAMP   |  2 +-
 gcc/testsuite/ChangeLog | 57 +++
 libstdc++-v3/ChangeLog  | 48 
 5 files changed, 170 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog
index e3afa99b1425..f28abc7d5a2a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2024-10-28  Jason Merrill  
+
+   * configure.ac: Update requirement to C++14.
+   * configure: Regenerate.
+
 2024-10-25  Andrew Pinski  
 
PR bootstrap/105474
diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index 8f7f72fa8b98..027d1f97cc9b 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,62 @@
+2024-10-28  Sam James  
+
+   * opts-common.cc (prune_options): Fix typo.
+
+2024-10-28  Andrew MacLeod  
+
+   * range-op-ptr.cc (operator_bitwise_or::fold_range): Fix logic
+   for setting nonzero.
+
+2024-10-28  Kyrylo Tkachov  
+
+   * config/aarch64/arm_neon.h (vxarq_u64): Rename imm6 to __imm6.
+
+2024-10-28  Jason Merrill  
+
+   * doc/install.texi (Prerequisites): Update to C++14.
+
+2024-10-28  Jeff Law  
+
+   PR target/117316
+   * config/riscv/riscv.cc (riscv_tune_param): Drop initializer.
+   (*_tune_info): Add initializers for code alignments.
+
+2024-10-28  Richard Biener  
+
+   PR tree-optimization/117307
+   * tree-vect-data-refs.cc (vect_analyze_data_ref_accesses):
+   Properly compute STMT_VINFO_SLP_VECT_ONLY.  Set it on all
+   parts of a split group.
+
+2024-10-28  Tobias Burnus  
+
+   * tree-core.h (enum omp_clause_code): Add comments to cross ref to
+   OMP_CLAUSE_DECL etc. and mark the ranges used in the range checks.
+
+2024-10-28  Andrew Pinski  
+
+   PR middle-end/111285
+   * tree-vect-generic.cc (do_unop): Use a signed type for the
+   operand if the operation was ABSU_EXPR.
+
+2024-10-28  Andrew Pinski  
+
+   * tree-ssa-phiopt.cc (match_simplify_replacement): Move
+   check for maybe_undef_p earlier.
+
+2024-10-28  Richard Biener  
+
+   * tree-vect-patterns.cc (check_bool_pattern): For comparisons
+   we do nothing if we can expand them or we can't replace them
+   with a ? -1 : 0 condition - but the latter would require
+   expanding the comparison which we proved we can't.  So do
+   nothing, aka not think vec_cond{u,eq,} will save us.
+
+2024-10-28  xuli  
+
+   PR target/117286
+   * config/riscv/riscv-vector-builtins-bases.cc: Do not expand NULL 
return.
+
 2024-10-27  Fangrui Song  
 
* config/arm/bpabi.h (TARGET_FDPIC_ASM_SPEC): Transform -mfdpic.
diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0dda5574ec7c..03377a986ad3 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20241028
+20241029
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index aab3ffa80200..f5188c8fd0eb 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,60 @@
+2024-10-28  David Malcolm  
+
+   * gcc.dg/sarif-output/test-bad-pragma.py: Rename to...
+   * gcc.dg/sarif-output/bad-pragma.py: ...this.
+   * gcc.dg/sarif-output/bad-pragma.c: Update for script renaming.
+   * gcc.dg/sarif-output/test-include-chain-1.py: Rename to...
+   * gcc.dg/sarif-output/include-chain-1.py: ...this.
+   * gcc.dg/sarif-output/include-chain-1.c: Update for script renaming.
+   * gcc.dg/sarif-output/test-include-chain-2.py: Rename to...
+   * gcc.dg/sarif-output/include-chain-2.py: ...this.
+   * gcc.dg/sarif-output/include-chain-2.c: Update for script renaming.
+   * gcc.dg/sarif-output/test-missing-semicolon.py: Rename to...
+   * gcc.dg/sarif-output/missing-semicolon.py: ...this.
+   * gcc.dg/sarif-output/missing-semicolon.c: Update for script renaming.
+   * gcc.dg/sarif-output/test-no-diagnostics.py: Rename to...
+   * gcc.dg/sarif-output/no-diagnostics.py: ...this.
+   * gcc.dg/sarif-output/no-diagnostics.c: Update for script renaming.
+   * gcc.dg/sarif-output/test-werror.py: Rename to...
+   * gcc.dg/sarif-output/werror.py: ...this.
+   * gcc.dg/sarif-output/werror.c: Update for script renaming.
+
+2024-10-28  Andrew Pinski  
+
+   PR tree-optimization/117330
+   * gcc.dg/torture/pr117330-1.c: New test.
+
+2024-10-28  Dimitar Dimitrov  
+
+   * g++.dg/lto/pr47333_0.C: Require target that supports atomic
+   operations on int and long types.
+
+2024-10-28  Sam James  
+
+   PR tree-optimization/107467
+   PR middle-end/115110
+   * g++.dg/lto/pr107467_0.C: New test.
+
+2024-10-28  Richard Biener  
+
+   PR tree-optimization/117307
+   * gcc.dg/vect/

[gcc r12-10789] Daily bump.

2024-10-28 Thread GCC Administrator via Gcc-cvs
https://gcc.gnu.org/g:7f13d0705d3b0e8f2f53aa381b4e4b6323682b88

commit r12-10789-g7f13d0705d3b0e8f2f53aa381b4e4b6323682b88
Author: GCC Administrator 
Date:   Tue Oct 29 00:20:10 2024 +

Daily bump.

Diff:
---
 gcc/DATESTAMP | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0dda5574ec7c..03377a986ad3 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20241028
+20241029


Cron sh /home/gccadmin/scripts/update_version_git

2024-10-28 Thread (Cron Daemon) via Gccadmin
2024-10-29 00:17:59,083:INFO:root:=== Working on: master ===
2024-10-29 00:17:59,689:INFO:root:branch pulled and checked out
2024-10-29 00:17:59,954:INFO:root:18 revisions since last Daily bump
2024-10-29 00:18:02,061:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:02,243:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:02,427:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:02,603:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:02,790:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:02,976:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:03,162:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:03,334:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:03,519:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:03,710:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:03,891:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:04,079:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:04,261:INFO:root:writing to ./ChangeLog
2024-10-29 00:18:04,436:INFO:root:writing to ./libstdc++-v3/ChangeLog
2024-10-29 00:18:04,627:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:04,820:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:10,519:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:10,676:INFO:root:writing to ./gcc/ChangeLog
2024-10-29 00:18:11,784:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:12,210:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:12,374:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:18:22,306:INFO:root:DATESTAMP will be changed:
2024-10-29 00:18:26,000:INFO:root:commit is done
2024-10-29 00:19:00,836:INFO:root:branch is pushed
2024-10-29 00:19:00,903:INFO:root:branch is done
2024-10-29 00:19:00,903:INFO:root:
2024-10-29 00:19:08,718:INFO:root:=== Working on: releases/gcc-12 ===
2024-10-29 00:20:06,811:INFO:root:branch pulled and checked out
2024-10-29 00:20:06,812:INFO:root:1 revisions since last Daily bump
2024-10-29 00:20:06,878:INFO:root:DATESTAMP will be changed:
2024-10-29 00:20:10,848:INFO:root:commit is done
2024-10-29 00:20:34,047:INFO:root:branch is pushed
2024-10-29 00:20:34,100:INFO:root:branch is done
2024-10-29 00:20:34,101:INFO:root:
2024-10-29 00:20:42,961:INFO:root:=== Working on: releases/gcc-13 ===
2024-10-29 00:22:22,637:INFO:root:branch pulled and checked out
2024-10-29 00:22:22,638:INFO:root:1 revisions since last Daily bump
2024-10-29 00:22:22,650:INFO:root:DATESTAMP will be changed:
2024-10-29 00:22:25,825:INFO:root:commit is done
2024-10-29 00:22:50,713:INFO:root:branch is pushed
2024-10-29 00:22:50,775:INFO:root:branch is done
2024-10-29 00:22:50,776:INFO:root:
2024-10-29 00:22:50,915:INFO:root:=== Working on: releases/gcc-14 ===
2024-10-29 00:22:58,438:INFO:root:branch pulled and checked out
2024-10-29 00:22:58,439:INFO:root:4 revisions since last Daily bump
2024-10-29 00:22:58,598:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:22:58,789:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:22:59,010:INFO:root:writing to ./gcc/testsuite/ChangeLog
2024-10-29 00:22:59,167:INFO:root:DATESTAMP will be changed:
2024-10-29 00:23:02,420:INFO:root:commit is done
2024-10-29 00:23:30,490:INFO:root:branch is pushed
2024-10-29 00:23:30,555:INFO:root:branch is done
2024-10-29 00:23:30,555:INFO:root:


[gcc r14-10848] Daily bump.

2024-10-28 Thread GCC Administrator via Gcc-cvs
https://gcc.gnu.org/g:f675f1b738328a7d5e0be29b14ef7cf4a7dde52e

commit r14-10848-gf675f1b738328a7d5e0be29b14ef7cf4a7dde52e
Author: GCC Administrator 
Date:   Tue Oct 29 00:23:02 2024 +

Daily bump.

Diff:
---
 gcc/DATESTAMP   |  2 +-
 gcc/testsuite/ChangeLog | 24 
 2 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0dda5574ec7c..03377a986ad3 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20241028
+20241029
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 90e5acc0c306..254d765ad108 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -1,3 +1,27 @@
+2024-10-28  Sam James  
+
+   Backported from master:
+   2024-10-28  Sam James  
+
+   PR tree-optimization/107467
+   PR middle-end/115110
+   * g++.dg/lto/pr107467_0.C: New test.
+
+2024-10-28  Sam James  
+
+   Revert:
+   2024-10-28  Sam James  
+
+   PR tree-optimization/107467
+   PR middle-end/115110
+   * g++.dg/lto/pr107467_0.C: New test.
+
+2024-10-28  Sam James  
+
+   PR tree-optimization/107467
+   PR middle-end/115110
+   * g++.dg/lto/pr107467_0.C: New test.
+
 2024-10-27  Torbjörn SVENSSON  
 
Backported from master:


[gcc r13-9153] Daily bump.

2024-10-28 Thread GCC Administrator via Gcc-cvs
https://gcc.gnu.org/g:7c21bac7f4831de66a2b2fe38d2df119fe79a7e0

commit r13-9153-g7c21bac7f4831de66a2b2fe38d2df119fe79a7e0
Author: GCC Administrator 
Date:   Tue Oct 29 00:22:25 2024 +

Daily bump.

Diff:
---
 gcc/DATESTAMP | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP
index 0dda5574ec7c..03377a986ad3 100644
--- a/gcc/DATESTAMP
+++ b/gcc/DATESTAMP
@@ -1 +1 @@
-20241028
+20241029


Cron sh /home/gccadmin/scripts/update_web_docs_libstdcxx_git

2024-10-28 Thread (Cron Daemon) via Gccadmin
9992 blocks


Mail delivery failed: returning message to sender

2024-10-28 Thread Mail Delivery System
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  gccadmin@gcc.gnu.org
host gcc.gnu.org [8.43.85.97]
SMTP error from remote mail server after end of data:
550 5.7.1 Blocked by SpamAssassin
Reporting-MTA: dns; tesla.domns.com

Action: failed
Final-Recipient: rfc822;gccadmin@gcc.gnu.org
Status: 5.0.0
Remote-MTA: dns; gcc.gnu.org
Diagnostic-Code: smtp; 550 5.7.1 Blocked by SpamAssassin