]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 5 Jan 2023 00:17:41 +0000 (00:17 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 5 Jan 2023 00:17:41 +0000 (00:17 +0000)
ChangeLog
gcc/ChangeLog
gcc/DATESTAMP
gcc/cp/ChangeLog
gcc/lto/ChangeLog
gcc/m2/ChangeLog
gcc/testsuite/ChangeLog
libgm2/ChangeLog
libstdc++-v3/ChangeLog

index 68f50e9ffe0ab7397c95ffb6d7a2c87d991c3743..46f6e72a797e934cd6faee0b9c8db3cf24b85115 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2023-01-04  Gaius Mulley  <gaiusmod2@gmail.com>
+
+       * MAINTAINERS: Add Gaius Mulley as Modula-2 front-end maintainer.
+
 2022-12-31  Iain Sandoe  <iain@sandoe.co.uk>
 
        * Makefile.def: Do not build shared libffi.
index 0191f9224eb688d01960b28db43006b9d933d908..50218d045109c87c02036423b6a7a85ab7dccbb3 100644 (file)
@@ -1,3 +1,35 @@
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/108253
+       * tree-vrp.cc (maybe_set_nonzero_bits): Handle var with pointer
+       types.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/108237
+       * generic-match-head.cc: Include tree-pass.h.
+       (canonicalize_math_p, optimize_vectors_before_lowering_p): Define
+       to false if cfun and cfun->curr_properties has PROP_gimple_opt_math
+       resp. PROP_gimple_lvec property set.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/108256
+       * convert.cc (do_narrow): Punt for MULT_EXPR if original
+       type doesn't wrap around and -fsanitize=signed-integer-overflow
+       is on.
+       * fold-const.cc (fold_unary_loc) <CASE_CONVERT>: Likewise.
+
+2023-01-04  Hu, Lin1  <lin1.hu@intel.com>
+
+       * common/config/i386/cpuinfo.h (get_intel_cpu): Handle Emeraldrapids.
+       * common/config/i386/i386-common.cc: Add Emeraldrapids.
+
+2023-01-04  Hu, Lin1  <lin1.hu@intel.com>
+
+       * common/config/i386/cpuinfo.h (get_intel_cpu): Remove case 0xb5
+       for meteorlake.
+
 2023-01-03  Sandra Loosemore  <sandra@codesourcery.com>
 
        * cgraph.h (struct cgraph_node): Add gc_candidate bit, modify
index 488992842fa5de3259e8c81bbfb2e8c8f973931e..9d39ee8c855bff5818dd74e1fe9f8b615735da61 100644 (file)
@@ -1 +1 @@
-20230104
+20230105
index 97887c90552b40c034f463eff250248365499ae2..e72f9435035dd89eff5ec903c72920dcf934dd6c 100644 (file)
@@ -1,3 +1,15 @@
+2023-01-04  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/108282
+       * decl2.cc (mark_single_function): Ignore mark_used failure
+       only in a non-SFINAE context rather than in a SFINAE one.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/108206
+       * decl.cc (merge_default_template_args): Return false if either
+       new_parm or old_parm are erroneous.
+
 \f
 Copyright (C) 2023 Free Software Foundation, Inc.
 
index 04760a4cb3d716dd7e0f38b160879493266d2753..3210e34f8586fb0e4918368e3334a0c61be5fbcb 100644 (file)
@@ -1,3 +1,8 @@
+2023-01-04  Jan Hubicka  <hubicka@ucw.cz>
+
+       * lto-partition.cc (may_need_named_section_p): Clones with no body
+       need no remaning.
+
 2022-12-29  Alexandre Oliva  <oliva@adacore.com>
 
        * lto-partition.cc (lto_1_to_1_map): Drop NULL partition
index d82771c66d71f87b131710b4f82b338733757993..2dbf85fcf669d35019ad65494187d413ca21995f 100644 (file)
@@ -1,3 +1,22 @@
+2023-01-04  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR modula2/108183
+       * gm2-libs-ch/UnixArgs.cc (_M2_UnixArgs_ctor): Rework to use
+       an extern "C" function with 'constructor' attribute.
+       * gm2-libs-ch/dtoa.cc (_M2_dtoa_ctor): Likewise.
+       * gm2-libs-ch/ldtoa.cc (_M2_ldtoa_ctor): Likewise.
+
+2023-01-04  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR modula2/108259
+       * gm2-gcc/m2decl.cc (m2decl_DeclareModuleCtor): Make module
+       registration constructors visible.
+
+2023-01-04  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * Make-lang.in (dvi, ps, pdf): Build in the gcc/doc directory, also
+       use the configured tools for texi -> dvi and texi -> pdf.
+
 2023-01-01  Iain Sandoe  <iain@sandoe.co.uk>
            Gaius Mulley  <gaiusmod2@gmail.com>
 
index 365de9d05ad62ecd4bf4f49e006fd53bec663836..218732b84ed713bdce8d9aeb273bccc41759c9f4 100644 (file)
@@ -1,3 +1,32 @@
+2023-01-04  Patrick Palka  <ppalka@redhat.com>
+
+       PR c++/108282
+       * g++.dg/cpp2a/concepts-requires34.C: New test.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/108206
+       * g++.dg/template/pr108206.C: New test.
+
+2023-01-04  Iain Sandoe  <iain@sandoe.co.uk>
+
+       * gm2/iso/pass/realbitscast.mod: Disable REAL96 on Darwin.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/108253
+       * g++.dg/opt/pr108253.C: New test.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR middle-end/108237
+       * gcc.c-torture/compile/pr108237.c: New test.
+
+2023-01-04  Jakub Jelinek  <jakub@redhat.com>
+
+       PR sanitizer/108256
+       * c-c++-common/ubsan/pr108256.c: New test.
+
 2023-01-03  David Edelsohn  <dje.gcc@gmail.com>
 
        * g++.dg/modules/modules.exp: Skip on AIX.
index a443ffcb8ade2d4390ceca5f8126d470c5fa11a5..38215157e05693ae4ed00fd439b5276d1e8cdf40 100644 (file)
@@ -1,3 +1,21 @@
+2023-01-04  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR modula2/108183
+       * libm2cor/KeyBoardLEDs.cc (_M2_KeyBoardLEDs_ctor): Rework to use
+       an extern "C" function with 'constructor' attribute.
+       * libm2iso/ErrnoCategory.cc (_M2_ErrnoCategory_ctor): Likewise.
+       * libm2iso/RTco.cc (_M2_RTco_ctor): Likewise.
+       * libm2pim/Selective.cc (_M2_Selective_ctor): Likewise.
+       * libm2pim/SysExceptions.cc (_M2_SysExceptions_ctor): Likewise.
+       * libm2pim/UnixArgs.cc (_M2_UnixArgs_ctor): Likewise.
+       * libm2pim/cgetopt.cc (_M2_cgetopt_ctor): Likewise.
+       * libm2pim/dtoa.cc (_M2_dtoa_ctor): Likewise.
+       * libm2pim/errno.cc (_M2_errno_ctor): Likewise.
+       * libm2pim/ldtoa.cc (_M2_ldtoa_ctor): Likewise.
+       * libm2pim/sckt.cc (_M2_sckt_ctor): Likewise.
+       * libm2pim/termios.cc (_M2_termios_ctor): Likewise.
+       * libm2pim/wrapc.c: Add a new line to the file end.
+
 2022-12-31  Iain Sandoe  <iain@sandoe.co.uk>
 
        * configure: Regenerate.
index 97887c90552b40c034f463eff250248365499ae2..43471e10e946526a7f9a652297698167dcdfe2ee 100644 (file)
@@ -1,3 +1,17 @@
+2023-01-04  Iain Sandoe  <iain@sandoe.co.uk>
+
+       PR libstdc++/108228
+       * config/abi/pre/gnu.ver (GLIBCXX_3.4):
+       Add __gnu_cxx::zoneinfo_dir_override().
+
+2023-01-04  Jonathan Wakely  <jwakely@redhat.com>
+
+       PR libstdc++/108258
+       * include/std/array (__array_traits<T, 0>::operator T*()): Add
+       constexpr.
+       * testsuite/23_containers/array/element_access/constexpr_c++17.cc: Check
+       std::array<T, 0>::data().
+
 \f
 Copyright (C) 2023 Free Software Foundation, Inc.