diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index 70fc80dac6c..4baf53f5c01 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20240217 +20240218 diff --git a/gcc/cp/ChangeLog b/gcc/cp/ChangeLog index 67b07f14df4..f7c8dca0e5e 100644 --- a/gcc/cp/ChangeLog +++ b/gcc/cp/ChangeLog @@ -1,3 +1,9 @@ +2024-02-17 Marek Polacek + + 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 DR 1351 diff --git a/gcc/d/ChangeLog b/gcc/d/ChangeLog index 76c07400df6..06cc55763c5 100644 --- a/gcc/d/ChangeLog +++ b/gcc/d/ChangeLog @@ -1,3 +1,41 @@ +2024-02-17 Iain Buclaw + + * 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 PR d/113125 diff --git a/gcc/fortran/ChangeLog b/gcc/fortran/ChangeLog index 8fdbd5d32d3..9e84f0d4516 100644 --- a/gcc/fortran/ChangeLog +++ b/gcc/fortran/ChangeLog @@ -1,3 +1,20 @@ +2024-02-17 Jakub Jelinek + + 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 + + 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 * dump-parse-tree.cc (show_attr): Handle omp_declare_target_indirect diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index a66a1155e64..1e20fb0523a 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,36 @@ +2024-02-17 Jerry DeLisle + + PR libfortran/105473 + * gfortran.dg/pr105473.f90: New test. + +2024-02-17 Jakub Jelinek + + PR fortran/113503 + * gfortran.dg/pr113503_1.f90: New test. + * gfortran.dg/pr113503_2.f90: New test. + +2024-02-17 Jerry DeLisle + + PR libfortran/107068 + * gfortran.dg/pr107068.f90: New test. + +2024-02-17 Marek Polacek + + PR c++/113158 + * g++.dg/cpp0x/noexcept83.C: New test. + +2024-02-17 Harald Anlauf + + 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 + + * 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 * g++.dg/torture/vector-struct-1.C: Add -Wstrict-aliasing. diff --git a/libgfortran/ChangeLog b/libgfortran/ChangeLog index 2c2cd657542..d3ce2d7d3c7 100644 --- a/libgfortran/ChangeLog +++ b/libgfortran/ChangeLog @@ -1,3 +1,20 @@ +2024-02-17 Jerry DeLisle + + 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 + + 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 PR fortran/99210 diff --git a/libphobos/ChangeLog b/libphobos/ChangeLog index c290b48f4b2..f6ac413ba23 100644 --- a/libphobos/ChangeLog +++ b/libphobos/ChangeLog @@ -1,3 +1,8 @@ +2024-02-17 Iain Buclaw + + * libdruntime/MERGE: Merge upstream druntime 9471b25db9. + * src/MERGE: Merge upstream phobos 547886846. + 2024-02-12 Iain Buclaw PR d/113667 diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 0b0896f597c..9ab80b82aad 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,9 @@ +2024-02-17 François Dumont + + * 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 PR libstdc++/87744