This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch releases/gcc-12 in repository gcc.
from 72c2898ccd8 Daily bump. new 1e43783b3f3 tree-optimization/105431 - another overflow in powi handling new ad4fa189a7b Properly use opts in finish_options new a53eff4ad05 middle-end/105537 - debug processing new 2a040e98294 rtl-optimization/105559 - avoid quadratic behavior in delet [...] new 844a5c8ca76 tree-optimization/105562 - avoid uninit diagnostic with better FRE new b251f8be6b0 rtl-optimization/105577 - RTL DSE and non-call EH new 25d7a738109 rtl-optimization/105577 - testcase for the PR new 374cee99d01 tree-optimization/105618 - restore load sinking
The 8 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/cfgrtl.cc | 2 +- gcc/dse.cc | 10 ++ gcc/flags.h | 4 +- gcc/opts.cc | 92 ++++++++++------ gcc/testsuite/g++.dg/torture/pr105577.C | 156 ++++++++++++++++++++++++++++ gcc/testsuite/g++.dg/warn/uninit-pr105562.C | 10 ++ gcc/testsuite/gcc.dg/torture/pr105537.c | 34 ++++++ gcc/testsuite/gcc.dg/tree-ssa/ssa-sink-19.c | 21 ++++ gcc/toplev.cc | 24 ----- gcc/tree-ssa-math-opts.cc | 12 +-- gcc/tree-ssa-sccvn.cc | 37 +++++-- gcc/tree-ssa-sccvn.h | 2 +- gcc/tree-ssa-sink.cc | 3 + 13 files changed, 333 insertions(+), 74 deletions(-) create mode 100644 gcc/testsuite/g++.dg/torture/pr105577.C create mode 100644 gcc/testsuite/g++.dg/warn/uninit-pr105562.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr105537.c create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/ssa-sink-19.c