]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 18 Feb 2024 00:17:05 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 18 Feb 2024 00:17:05 +0000 (00:17 +0000)
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/d/ChangeLog
gcc/fortran/ChangeLog
gcc/testsuite/ChangeLog
libgfortran/ChangeLog
libphobos/ChangeLog
libstdc++-v3/ChangeLog

index 70fc80dac6c078116090be568341ebd0028d46f9..4baf53f5c01b92f6f9f260e7dd1b282f0a192fed 100644 (file)
@@ -1 +1 @@
-20240217
+20240218
index 67b07f14df4ec97c91b7d785b2db141dd2f4d292..f7c8dca0e5e8bd2e268ba9edcdf7012e620ae68d 100644 (file)
@@ -1,3 +1,9 @@
+2024-02-17  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/113158
+       * search.cc (maybe_check_overriding_exception_spec): Defer checking
+       when a noexcept couldn't be instantiated & evaluated to false/true.
+
 2024-02-16  Marek Polacek  <polacek@redhat.com>
 
        DR 1351
index 76c07400df6da21d8b8d4393850c8db4ebe26c9c..06cc55763c5bbaab359c4e59f962dece1a395452 100644 (file)
@@ -1,3 +1,41 @@
+2024-02-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * dmd/MERGE: Merge upstream dmd 9471b25db9.
+       * dmd/VERSION: Bump version to v2.107.1-rc.1.
+       * Make-lang.in (D_FRONTEND_OBJS): Add d/cxxfrontend.o.
+       * d-attribs.cc (build_attributes): Update for new front-end interface.
+       * d-builtins.cc (build_frontend_type): Likewise.
+       (strip_type_modifiers): Likewise.
+       (covariant_with_builtin_type_p): Likewise.
+       * d-codegen.cc (declaration_type): Likewise.
+       (parameter_type): Likewise.
+       (build_array_struct_comparison): Likewise.
+       (void_okay_p): Likewise.
+       * d-convert.cc (convert_expr): Likewise.
+       (check_valist_conversion): Likewise.
+       * d-lang.cc (d_generate_ddoc_file): Likewise.
+       (d_parse_file): Likewise.
+       * d-target.cc (TargetCPP::toMangle): Likewise.
+       (TargetCPP::typeInfoMangle): Likewise.
+       (TargetCPP::thunkMangle): Likewise.
+       (TargetCPP::parameterType): Likewise.
+       * decl.cc (d_mangle_decl): Likewise.
+       (DeclVisitor::visit): Likewise.
+       (DeclVisitor::visit (CAsmDeclaration *)): New method.
+       (get_symbol_decl): Update for new front-end interface.
+       (layout_class_initializer): Likewise.
+       * expr.cc (ExprVisitor::visit): Likewise.
+       * intrinsics.cc (maybe_set_intrinsic): Likewise.
+       (expand_intrinsic_rotate): Likewise.
+       * modules.cc (layout_moduleinfo_fields): Likewise.
+       (layout_moduleinfo): Likewise.
+       * runtime.cc (get_libcall_type): Likewise.
+       * typeinfo.cc (make_frontend_typeinfo): Likewise.
+       (TypeInfoVisitor::visit): Likewise.
+       (create_typeinfo): Likewise.
+       * types.cc (same_type_p): Likewise.
+       (build_ctype): Likewise.
+
 2024-02-12  Iain Buclaw  <ibuclaw@gdcproject.org>
 
        PR d/113125
index 8fdbd5d32d30b8ec90703a1857fc2bc7e4217078..9e84f0d451608078195b0d2e2459d6cf89a4fb63 100644 (file)
@@ -1,3 +1,20 @@
+2024-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+       PR fortran/113503
+       * trans-expr.cc (alloc_scalar_allocatable_subcomponent): Don't
+       overwrite expr2->ts.u.cl->backend_decl, instead set size to
+       expr2->ts.u.cl->backend_decl first and use size instead of
+       expr2->ts.u.cl->backend_decl.
+       (gfc_trans_subcomponent_assign): Emit se.pre into block
+       before calling alloc_scalar_allocatable_subcomponent instead of
+       after it.
+
+2024-02-17  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/113911
+       * trans-array.cc (gfc_trans_deferred_array): Do not clobber
+       deferred length for a character variable passed as dummy argument.
+
 2024-02-15  Kwok Cheung Yeung  <kcyeung@baylibre.com>
 
        * dump-parse-tree.cc (show_attr): Handle omp_declare_target_indirect
index a66a1155e64ca3056fa8d81c9436239a9071c1ad..1e20fb0523a5ee3134dbae7d8ebf3b7fb315202d 100644 (file)
@@ -1,3 +1,36 @@
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/105473
+       * gfortran.dg/pr105473.f90: New test.
+
+2024-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+       PR fortran/113503
+       * gfortran.dg/pr113503_1.f90: New test.
+       * gfortran.dg/pr113503_2.f90: New test.
+
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/107068
+       * gfortran.dg/pr107068.f90: New test.
+
+2024-02-17  Marek Polacek  <polacek@redhat.com>
+
+       PR c++/113158
+       * g++.dg/cpp0x/noexcept83.C: New test.
+
+2024-02-17  Harald Anlauf  <anlauf@gmx.de>
+
+       PR fortran/113911
+       * gfortran.dg/allocatable_length_2.f90: New test.
+       * gfortran.dg/bind_c_optional-2.f90: Enable deferred-length test.
+
+2024-02-17  Jakub Jelinek  <jakub@redhat.com>
+
+       * lib/target-supports.exp (check_effective_target_lra): Rewrite
+       to list some heavily used always LRA targets and otherwise check the
+       -fdump-rtl-reload-details dump for messages specific to LRA.
+
 2024-02-16  Andrew Pinski  <quic_apinski@quicinc.com>
 
        * g++.dg/torture/vector-struct-1.C: Add -Wstrict-aliasing.
index 2c2cd657542eab1abdb63221e97377429febc33d..d3ce2d7d3c7f11dd2a89d1277aea58880b153c08 100644 (file)
@@ -1,3 +1,20 @@
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/105473
+       * io/list_read.c (eat_separator): Reject comma as a
+       seprator when it is being used as a decimal point.
+       (parse_real): Reject a '.' when is should be a comma.
+       (read_real): Likewise.
+       * io/read.c (read_f): Add more checks for ',' and '.'
+       conditions.
+
+2024-02-17  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
+
+       PR libfortran/107068
+       * io/list_read.c (read_logical): When looking for a possible
+       variable name, check for left paren, indicating a possible
+       array reference.
+
 2024-02-14  Jerry DeLisle  <jvdelisle@gcc.gnu.org>
 
        PR fortran/99210
index c290b48f4b2daa679edc1908c97b0c51c8e7ef44..f6ac413ba23b431a8dc64da8b8745487f5fc7e55 100644 (file)
@@ -1,3 +1,8 @@
+2024-02-17  Iain Buclaw  <ibuclaw@gdcproject.org>
+
+       * libdruntime/MERGE: Merge upstream druntime 9471b25db9.
+       * src/MERGE: Merge upstream phobos 547886846.
+
 2024-02-12  Iain Buclaw  <ibuclaw@gdcproject.org>
 
        PR d/113667
index 0b0896f597ccf0e694adc5703167afe3e9d5104a..9ab80b82aad4f770fe34d65aa42c916276f87d62 100644 (file)
@@ -1,3 +1,9 @@
+2024-02-17  François Dumont  <fdumont@gcc.gnu.org>
+
+       * include/bits/stl_algobase.h (std::__niter_base): Redefine the overload
+       definitions for __gnu_debug::_Safe_iterator.
+       * include/debug/safe_iterator.tcc (std::__niter_base): Adapt declarations.
+
 2024-02-16  Jonathan Wakely  <jwakely@redhat.com>
 
        PR libstdc++/87744