From: GCC Administrator Date: Thu, 14 Apr 2022 00:19:04 +0000 (+0000) Subject: Daily bump. X-Git-Tag: releases/gcc-11.3.0~43 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0f4b6d52f5d64232e8badd91f77a0860370e9870;p=thirdparty%2Fgcc.git Daily bump. --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 43662826186c..c4bce79b2ca5 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,52 @@ +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-12 Jakub Jelinek + + PR target/105214 + * config/i386/i386-expand.c (ix86_emit_i387_log1p): Call + do_pending_stack_adjust. + +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-12 Jakub Jelinek + + 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 + + Backported from master: + 2022-04-08 Jakub Jelinek + + 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 + + Backported from master: + 2022-04-06 Jakub Jelinek + + 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 Backported from master: diff --git a/gcc/DATESTAMP b/gcc/DATESTAMP index e49fcfa30306..343bc37b8b76 100644 --- a/gcc/DATESTAMP +++ b/gcc/DATESTAMP @@ -1 +1 @@ -20220413 +20220414 diff --git a/gcc/c-family/ChangeLog b/gcc/c-family/ChangeLog index e823794092d2..691448566770 100644 --- a/gcc/c-family/ChangeLog +++ b/gcc/c-family/ChangeLog @@ -1,3 +1,13 @@ +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-11 Jakub Jelinek + + 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 Backported from master: diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 5105d89353f6..0c0b50ceb594 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,35 @@ +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-12 Jakub Jelinek + + PR target/105214 + * gcc.dg/asan/pr105214.c: New test. + +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-12 Jakub Jelinek + + PR rtl-optimization/105211 + * gcc.dg/pr105211.c: New test. + +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-11 Jakub Jelinek + + PR c++/105186 + * c-c++-common/pr105186.c: New test. + +2022-04-13 Jakub Jelinek + + Backported from master: + 2022-04-08 Jakub Jelinek + + PR tree-optimization/105189 + * g++.dg/torture/pr105189.C: New test. + 2022-04-12 Patrick Palka Backported from master: