]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Daily bump.
authorGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 14 Apr 2022 00:19:04 +0000 (00:19 +0000)
committerGCC Administrator <gccadmin@gcc.gnu.org>
Thu, 14 Apr 2022 00:19:04 +0000 (00:19 +0000)
gcc/ChangeLog
gcc/DATESTAMP
gcc/c-family/ChangeLog
gcc/testsuite/ChangeLog

index 43662826186ce12cae9edd2dbb9a38423f5bdd2f..c4bce79b2ca5758a8ef8ac1513971c35a25689f7 100644 (file)
@@ -1,3 +1,52 @@
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-12  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/105214
+       * config/i386/i386-expand.c (ix86_emit_i387_log1p): Call
+       do_pending_stack_adjust.
+
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-12  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/105211
+       * builtins.c (expand_builtin_int_roundingfn_2): If mathfn_built_in_1
+       fails for TREE_TYPE (arg), retry it with
+       TREE_VALUE (TYPE_ARG_TYPES (TREE_TYPE (fndecl))) and if even that
+       fails, emit call normally.
+
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/105189
+       * fold-const.c (make_range_step): Fix up handling of
+       (unsigned) x +[low, -] ranges for signed x if low fits into
+       typeof (x).
+
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-06  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/104985
+       * combine.c (struct undo): Add where.regno member.
+       (do_SUBST_MODE): Rename to ...
+       (subst_mode): ... this.  Change first argument from rtx * into int,
+       operate on regno_reg_rtx[regno] and save regno into where.regno.
+       (SUBST_MODE): Remove.
+       (try_combine): Use subst_mode instead of SUBST_MODE, change first
+       argument from regno_reg_rtx[whatever] to whatever.  For UNDO_MODE, use
+       regno_reg_rtx[undo->where.regno] instead of *undo->where.r.
+       (undo_to_marker): For UNDO_MODE, use regno_reg_rtx[undo->where.regno]
+       instead of *undo->where.r.
+       (simplify_set): Use subst_mode instead of SUBST_MODE, change first
+       argument from regno_reg_rtx[whatever] to whatever.
+
 2022-04-12  Peter Bergner  <bergner@linux.ibm.com>
 
        Backported from master:
index e49fcfa303068bcc1997f1b37e70b40e77d69661..343bc37b8b769be266bd7574cca3b113ffb6cdfe 100644 (file)
@@ -1 +1 @@
-20220413
+20220414
index e823794092d2bc42b677d21dc274321c56819cf9..691448566770263396221bdd4b22c5c1713e0941 100644 (file)
@@ -1,3 +1,13 @@
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/105186
+       * c-common.c (c_common_nodes_and_builtins): After registering __int%d
+       and __int%d__ builtin types, initialize corresponding ridpointers
+       entry.
+
 2022-04-07  Martin Sebor  <msebor@redhat.com>
 
        Backported from master:
index 5105d89353f6f21e7467a885d943b100e37f98b8..0c0b50ceb5946c7a4f6240f94a372838001016a1 100644 (file)
@@ -1,3 +1,35 @@
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-12  Jakub Jelinek  <jakub@redhat.com>
+
+       PR target/105214
+       * gcc.dg/asan/pr105214.c: New test.
+
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-12  Jakub Jelinek  <jakub@redhat.com>
+
+       PR rtl-optimization/105211
+       * gcc.dg/pr105211.c: New test.
+
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-11  Jakub Jelinek  <jakub@redhat.com>
+
+       PR c++/105186
+       * c-c++-common/pr105186.c: New test.
+
+2022-04-13  Jakub Jelinek  <jakub@redhat.com>
+
+       Backported from master:
+       2022-04-08  Jakub Jelinek  <jakub@redhat.com>
+
+       PR tree-optimization/105189
+       * g++.dg/torture/pr105189.C: New test.
+
 2022-04-12  Patrick Palka  <ppalka@redhat.com>
 
        Backported from master: