]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 19 Feb 2023 00:16:39 +0000 (00:16 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Sun, 19 Feb 2023 00:16:39 +0000 (00:16 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c-family/ChangeLog
gcc/c/ChangeLog
gcc/cp/ChangeLog
gcc/testsuite/ChangeLog
libstdc++-v3/ChangeLog

index b98a3948374b509cd8e8a957687d2f38d38cb788..a473929844b6df432e7115abe43ce489c3b2e3c4 100644 (file)
@@ -1,3 +1,41 @@
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/108819
+       * tree-ssa-reassoc.cc (update_ops): Fold new stmt in place.
+
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/108832
+       * config/i386/i386-protos.h (ix86_replace_reg_with_reg): Declare.
+       * config/i386/i386-expand.cc (ix86_replace_reg_with_reg): New
+       function.
+       * config/i386/i386.md: Replace replace_rtx calls in all peephole2s
+       with ix86_replace_reg_with_reg.
+
+2023-02-18  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * doc/invoke.texi (AVR Options): Update link to AVR-LibC.
+
+2023-02-18  Xi Ruoyao  <xry111@xry111.site>
+
+       * config.gcc (triplet_abi): Set its value based on $with_abi,
+       instead of $target.
+       (la_canonical_triplet): Set it after $triplet_abi is set
+       correctly.
+       * config/loongarch/t-linux (MULTILIB_OSDIRNAMES): Make the
+       multiarch tuple for lp64d "loongarch64-linux-gnu" (without
+       "f64" suffix).
+
+2023-02-18  Andrew Pinski  <apinski@marvell.com>
+
+       * match.pd: Remove #if GIMPLE around the
+       "1 - a" pattern
+
+2023-02-18  Andrew Pinski  <apinski@marvell.com>
+
+       * value-query.h (get_range_query): Return the global ranges
+       for a nullptr func.
+
 2023-02-17  Siddhesh Poyarekar  <siddhesh@gotplt.org>
 
        * doc/invoke.texi (@item -Wall): Fix typo in
index ac1301f036ff8f1d66d3574666cc4c92cae9ca3e..03e603a86b980f5bdb67935ece46c7619b6828da 100644 (file)
@@ -1 +1 @@
-20230218
+20230219
index 5bc8fa5582cbfe7ef985f92c864f3e59b9c5feee..41977aac2e22763ef27e975d25b2aaf7d7726a4c 100644 (file)
@@ -1,3 +1,11 @@
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+       PR c/105660
+       * c-attribs.cc (append_access_attr): Use order of arguments when
+       construction string.
+       (append_access_attr_idxs): Rename and make static.
+       * c-warn.cc (warn_parm_array_mismatch): Add assertion.
+
 2023-02-16  Patrick Palka  <ppalka@redhat.com>
 
        * c-common.h: Mechanically drop static from static inline
index 26eeee2653d984746684ef3c7481b04e216aac84..d3cd60bd9091284d6c9f707843d713d9d1ce8205 100644 (file)
@@ -1,3 +1,24 @@
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+       PR c/108375
+       * c-decl.cc (decl_jump_unsafe): Use c_type_variably_modified_p.
+       (diagnose_mismatched_decl): Dito.
+       (warn_about_goto): Dito:
+       (c_check_switch_jump_warnings): Dito.
+       (finish_decl): Dito.
+       (finish_struct): Dito.
+       (grokdeclarator): Set C_TYPE_VARIABLY_MODIFIED.
+       (finish_struct): Set C_TYPE_VARIABLY_MODIFIED.
+       * c-objc-common.cc (c_var_mod_p): New function.
+       (c_var_unspec_p): Remove.
+       * c-objc-common.h: Set lang hook.
+       * c-parser.cc (c_parser_declararion_or_fndef): Use c_type_variably_modified_p.
+       (c_parser_typeof_specifier): Dito.
+       (c_parser_has_attribute_expression): Dito.
+       (c_parser_generic_selection): Dito.
+       * c-tree.h: Define C_TYPE_VARIABLY_MODIFIED and define c_var_mode_p.
+       * c-typeck.cc: Remove c_vla_mod_p and use C_TYPE_VARIABLY_MODIFIED.
+
 2023-02-16  Patrick Palka  <ppalka@redhat.com>
 
        * c-parser.h: Mechanically drop static from static inline
index 33fc32f29caaf53227a756a9a84c0a3402a45428..20b2fe561487bdcaf0de34584f0de1e828fc0545 100644 (file)
@@ -1,3 +1,16 @@
+2023-02-18  Jason Merrill  <jason@redhat.com>
+
+       DR 2518
+       PR c++/52809
+       PR c++/53638
+       PR c++/87389
+       PR c++/89741
+       PR c++/92099
+       PR c++/104041
+       PR c++/104691
+       * semantics.cc (finish_static_assert): Don't diagnose in
+       template context.
+
 2023-02-17  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/108243
index 1f8e724721844356b4a6cf5b87642d7d8490c282..fcef7d879becf3ab231f24f68bafc862ced22d8d 100644 (file)
@@ -1,3 +1,38 @@
+2023-02-18  Jason Merrill  <jason@redhat.com>
+
+       DR 2518
+       PR c++/52809
+       PR c++/53638
+       PR c++/87389
+       PR c++/89741
+       PR c++/92099
+       PR c++/104041
+       PR c++/104691
+       * g++.dg/DRs/dr2518.C: New test.
+
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/108819
+       * gcc.dg/pr108819.c: New test.
+
+2023-02-18  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/108832
+       * gcc.target/i386/pr108832.c: New test.
+
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+       PR c/108375
+       * gcc.dg/pr108375-1.c: New test.
+       * gcc.dg/pr108375-2.c: New test.
+
+2023-02-18  Martin Uecker  <uecker@tugraz.at>
+
+       PR c/105660
+       PR c/105660
+       * gcc.dg/pr105660-1.c: New test.
+       * gcc.dg/pr105660-2.c: New test.
+
 2023-02-17  Patrick Palka  <ppalka@redhat.com>
 
        PR c++/108243
index 00aafa46b1765ae9274e4f61903716b48d84ee76..7eb41dfd28556106f390536fcabfd47da0509eb3 100644 (file)
@@ -1,3 +1,8 @@
+2023-02-18  Gerald Pfeifer  <gerald@pfeifer.com>
+
+       * doc/xml/faq.xml: Switch two links to www.open-std.org to https.
+       * doc/html/faq.html: Regenerate.
+
 2023-02-16  Matthias Kretz  <m.kretz@gsi.de>
 
        * include/experimental/bits/simd_math.h (__hypot): Bitcasting