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

index 49e339dfb03946beb1b94531a15e476d461a33ba..4d490a492c18221d947d633727600fc870464d64 100644 (file)
@@ -1,3 +1,9 @@
+2024-09-14  Georg-Johann Lay  <avr@gjlay.de>
+
+       * config/avr/avr.md (UNSPEC_COPYSIGN): Remove define_enum.
+       (copysignsf3): Use copysign instead of UNSPEC_COPYSIGN.
+       Allow const_double for operand 2.
+
 2024-09-13  Georg-Johann Lay  <avr@gjlay.de>
 
        * config/avr/avr.cc (avr_2word_insn_p): Return true for
index 84c2c89a522e8b175511682f46c93cf37043343b..5cbbe5defc0cf8f0648f75ebe395def3a3122f63 100644 (file)
@@ -1 +1 @@
-20240914
+20240915
index b82aab7ee3a1c465c5e6d0d62099c00a64d0f319..5f590a3e4a25c460780b681ece1f9f36330b5f04 100644 (file)
@@ -1,3 +1,14 @@
+2024-09-14  Jason Merrill  <jason@redhat.com>
+
+       * tree.cc (handle_init_priority_attribute): Check
+       in_system_header_at.
+
+2024-09-14  Simon Martin  <simon@nasilyan.com>
+
+       PR c++/116681
+       * name-lookup.cc (qualified_namespace_lookup): Use an
+       auto_cond_timer instead of using timevar_start and timevar_stop.
+
 2024-09-13  Jason Merrill  <jason@redhat.com>
 
        PR c++/116696
index babb5350096c109f891a5d568f7a6a5d7b16434b..df44a0a04e0d0382b364899a3a051fe187a07bb7 100644 (file)
@@ -1,3 +1,29 @@
+2024-09-14  Andrew Pinski  <quic_apinski@quicinc.com>
+
+       PR testsuite/116716
+       * gcc.c-torture/execute/pr52286.c: Fix inline-asm for 16bit case.
+
+2024-09-14  Simon Martin  <simon@nasilyan.com>
+
+       PR c++/116681
+       * g++.dg/cpp2a/concepts-pr116681.C: New test.
+
+2024-09-14  Jason Merrill  <jason@redhat.com>
+
+       * c-c++-common/pragma-diag-17.c: Handle !dfp targets.
+
+2024-09-14  Jonathan Wakely  <jwakely@redhat.com>
+
+       * g++.dg/ext/sve-sizeless-1.C: Adjust dg-error string.
+
+2024-09-14  Alexandre Oliva  <oliva@adacore.com>
+
+       * g++.dg/coroutines/pr108620.C: Skip if !hostedlib because of
+       unavailable headers.
+       * g++.dg/other/profile1.C: Likewise.
+       * g++.dg/ext/pragma-unroll-lambda-lto.C: Skip if !hostedlib
+       because of unavailable declarations.
+
 2024-09-13  Jason Merrill  <jason@redhat.com>
 
        PR c++/116696
index cb2049429ecf406f5cf6ec0f26c5c1b902398f02..d6f33fef1d92f24bdb7899794899092ded7e9097 100644 (file)
@@ -1,3 +1,19 @@
+2024-09-14  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/std/format (__formatter_fp::_M_localize): Add comments
+       and micro-optimize string copy.
+
+2024-09-14  Jonathan Wakely  <jwakely@redhat.com>
+
+       * include/bits/semaphore_base.h (__platform_semaphore): Refactor
+       loops to all use similar forms.
+       (__platform_semaphore::_M_try_acquire_until): Use chrono::ceil
+       to explicitly convert to __clock_t::time_point.
+       * testsuite/30_threads/semaphore/try_acquire_for.cc: Check that
+       using a very high resolution timeout compiles.
+       * testsuite/30_threads/semaphore/platform_try_acquire_for.cc:
+       New test.
+
 2024-09-13  Giuseppe D'Angelo  <giuseppe.dangelo@kdab.com>
 
        PR libstdc++/108846