]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 8 Jul 2024 00:17:01 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Mon, 8 Jul 2024 00:17:01 +0000 (00:17 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/ada/ChangeLog
gcc/cp/ChangeLog
gcc/m2/ChangeLog
gcc/testsuite/ChangeLog
gnattools/ChangeLog
libstdc++-v3/ChangeLog
maintainer-scripts/ChangeLog

index caeb1ee835eb35fbcd65db470f7cba847a50265d..ae2d55a9b0538d6ba29325b1219998e0e7fff6a3 100644 (file)
@@ -1,3 +1,7 @@
+2024-07-07  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * doc/bugreport.texi (Bug Criteria): Remove dubious example.
+
 2024-07-06  Jeff Law  <jlaw@ventanamicro.com>
 
        * config/riscv/bitmanip.md (bset splitters): Turn into define_and_splits.
index 391dc0be05546db2811fd4f865408f887109e43d..d50aabd12dd3ca1c61a29a12113f90ac5ac453ff 100644 (file)
@@ -1 +1 @@
-20240707
+20240708
index 986adf36dd23da9e200e799a5fd966f3e9a3f87f..6d4e4abf85b6940d6eca629d39ea233154a6e1f9 100644 (file)
@@ -1,3 +1,10 @@
+2024-07-07  Maciej W. Rozycki  <macro@orcam.me.uk>
+
+       * gcc-interface/Make-lang.in (ada.all.cross): Move recipe to...
+       (GNATTOOLS_CROSS_MV): ... this new variable.
+       (cross-gnattools): Paste it here.
+       (gnattools-cross-mv): New target.
+
 2024-07-03  Alexandre Oliva  <oliva@adacore.com>
 
        * gcc-interface/misc.cc (gnat_get_array_descr_info): Only follow
index 14aa4b397175b7a39359593c1b977bb5573fd808..a15461d5ac47df6007f0627acdbf2fa816e8b716 100644 (file)
@@ -1,3 +1,9 @@
+2024-07-07  Nathaniel Shead  <nathanieloshead@gmail.com>
+
+       * module.cc (trees_out::get_merge_kind): Use
+       LAMBDA_TYPE_EXTRA_SCOPE instead of LAMBDA_EXPR_EXTRA_SCOPE.
+       (trees_out::key_mergeable): Likewise.
+
 2024-07-04  Tamar Christina  <tamar.christina@arm.com>
 
        PR c++/115623
index 452556977b51a7e0aab72f9856ba8ebe45d33706..65f089c44ce9dea0130a07a97f995e816cbccdf7 100644 (file)
@@ -1,3 +1,17 @@
+2024-07-07  Gaius Mulley  <gaiusmod2@gmail.com>
+           Stefan Schulze Frielinghaus   <stefansf@linux.ibm.com>
+           Andrew Pinski   <quic_apinski@quicinc.com>
+
+       PR modula2/115804
+       * gm2-gcc/m2builtins.cc (builtin_function_entry): Add GTY.
+       (DoBuiltinMemCopy): Add rettype and use rettype in the call.
+       (DoBuiltinAlloca): Ditto.
+       (DoBuiltinIsfinite): Ditto.
+       (DoBuiltinIsnan): Ditto.
+       (m2builtins_BuiltInHugeVal): Ditto.
+       (m2builtins_BuiltInHugeValShort): Ditto.
+       (m2builtins_BuiltInHugeValLong): Ditto.
+
 2024-06-25  Gaius Mulley  <gaiusmod2@gmail.com>
 
        * gm2-compiler/M2GenGCC.mod (QuadCondition): Remove.
index d311464bcb3ee6c33f205097ee78c5efbc31c008..1a5be4afe3533ddb987c23bf72a1d8139b425038 100644 (file)
@@ -1,3 +1,8 @@
+2024-07-07  Maciej W. Rozycki  <macro@orcam.me.uk>
+
+       * lib/gnat.exp (local_find_gnatmake, find_gnatclean): Use
+       '-cross' suffix where testing a cross-compiler.
+
 2024-07-06  Jeff Law  <jlaw@ventanamicro.com>
 
        * gcc.target/riscv/binv-for-simode-1.c: New test.
index 73ffb9068cebdc5a99fda23fa753174627d7d4ac..b39fc371818905f090ada1c70a2d95420ed5952d 100644 (file)
@@ -1,3 +1,8 @@
+2024-07-07  Maciej W. Rozycki  <macro@orcam.me.uk>
+
+       * Makefile.in (gnattools-cross): Also build 'gnattools-cross-mv'
+       in GCC_DIR.
+
 2023-04-25  Eric Botcazou  <ebotcazou@adacore.com>
 
        * configure.ac (TOOLS_TARGET_PAIRS): Remove obsolete settings.
index 09874d2030d7de0be83c34397ef261f96cf4e0c9..ce60bdaf1bb0e7bfa04f9293c8b0a4106457241d 100644 (file)
@@ -1,3 +1,26 @@
+2024-07-07  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * doc/xml/manual/configure.xml: Update Autobook 14 link.
+       Update GCC installation instructions link.
+       * doc/html/manual/configure.html: Regenerate.
+
+2024-07-07  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/115799
+       * include/bits/stl_algo.h (find): Use 'if constexpr' so that
+       memchr optimization is a discarded statement for non-contiguous
+       iterators.
+       * testsuite/25_algorithms/find/bytes.cc: Check with input
+       iterators.
+
+2024-07-07  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/115799
+       * include/bits/ranges_util.h (__find_fn): Return iterator
+       instead of sentinel.
+       * testsuite/25_algorithms/find/constrained.cc: Check non-common
+       contiguous sized range of char.
+
 2024-07-06  Jonathan Wakely  <jwakely@redhat.com>
 
        * testsuite/17_intro/headers/c++1998/all_attributes.cc: Add
index d54d685b3e9988d0b5aa5d819eef59246e4b7dd9..b80db84fc69268e278611fb060729f6e5d20c775 100644 (file)
@@ -1,3 +1,7 @@
+2024-07-07  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * update_web_docs_git (BUGURL): Switch to https.
+
 2024-04-26  Jakub Jelinek  <jakub@redhat.com>
 
        * crontab: Snapshots from trunk are now GCC 15 related.