Hi! r15-4998 and r15-5004 had wrong commit message, add those to ignored commits. ChangeLog will need to be added manually.
The patch below is what I've committed before gcc_update_version and attached patch after it to fix this up. 2024-11-09 Jakub Jelinek <ja...@redhat.com> * gcc-changelog/git_update_version.py (ignored_commits): Add 2 further commits. diff --git a/contrib/gcc-changelog/git_update_version.py b/contrib/gcc-changelog/git_update_version.py index ec06fc965f8..005dcca769a 100755 --- a/contrib/gcc-changelog/git_update_version.py +++ b/contrib/gcc-changelog/git_update_version.py @@ -42,7 +42,9 @@ ignored_commits = { '040e5b0edbca861196d9e2ea2af5e805769c8d5d', '8057f9aa1f7e70490064de796d7a8d42d446caf8', '109f1b28fc94c93096506e3df0c25e331cef19d0', - '39f81924d88e3cc197fc3df74204c9b5e01e12f7'} + '39f81924d88e3cc197fc3df74204c9b5e01e12f7', + '8e6a25b01becf449d54154b7e83de5f4955cba37', + '13cf22eb557eb5e3d796822247d8d4957bdb25da'} FORMAT = '%(asctime)s:%(levelname)s:%(name)s:%(message)s' logging.basicConfig(level=logging.INFO, format=FORMAT, Jakub
ChangeLog: Manually add entries for r15-4998 and r15-5004 These commits used *.c rather than *.cc suffix and miracuously got through the pre-commit hook but broke ChangeLog generation. diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 23ee454e3f2..7fae8aacdf9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -177,6 +177,11 @@ laxer, adapted and moved from... (pass_tree_ifcombine::execute): ... here. +2024-11-07 Alexandre Oliva <ol...@adacore.com> + + * tree-ssa-ifcombine.cc (ifcombine_replace_cond): Support + TRUTH_ANDIF cond exprs. + 2024-11-07 Alexandre Oliva <ol...@adacore.com> * tree-ssa-ifcombine.cc (recognize_if_then_else): Support @@ -215,6 +220,11 @@ * tree-ssa-ifcombine.cc (ifcombine_ifandif): Drop redundant result_inv parm. Adjust all callers. +2024-11-07 Alexandre Oliva <ol...@adacore.com> + + * tree-ssa-ifcombine.cc (bb_no_side_effects_p): Allow vuses, + but not vdefs. + 2024-11-07 xuli <xu...@eswincomputing.com> * match.pd: Add the form1 of signed imm .SAT_ADD matching.