This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 35106383c09 Move scanning pass of forwprop-19.c to dse1 for r13-3212-gb [...] new 5ad3cc1ecc3 tree-optimization/107301 - check if we can duplicate block [...] new 4dda30e9910 middle-end IFN_ASSUME support [PR106654]
The 2 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/cgraph.cc | 4 +- gcc/cgraphunit.cc | 14 ++ gcc/cp/cp-gimplify.cc | 15 +- gcc/cp/cp-tree.h | 1 + gcc/cp/parser.cc | 6 +- gcc/cp/pt.cc | 5 +- gcc/function.h | 4 + gcc/gimple-low.cc | 395 ++++++++++++++++++++++++++++++ gcc/gimple-pretty-print.cc | 29 +++ gcc/gimple-ssa-isolate-paths.cc | 6 +- gcc/gimple-walk.cc | 13 + gcc/gimple.cc | 19 ++ gcc/gimple.def | 5 + gcc/gimple.h | 78 ++++++ gcc/gimplify.cc | 28 ++- gcc/gsstruct.def | 1 + gcc/internal-fn.cc | 1 - gcc/lto-streamer-in.cc | 1 + gcc/lto-streamer-out.cc | 1 + gcc/omp-low.cc | 4 + gcc/omp-oacc-kernels-decompose.cc | 1 + gcc/passes.cc | 9 + gcc/passes.def | 1 + gcc/testsuite/g++.dg/cpp23/attr-assume5.C | 5 + gcc/testsuite/g++.dg/cpp23/attr-assume6.C | 5 + gcc/testsuite/g++.dg/cpp23/attr-assume7.C | 56 +++++ gcc/testsuite/gcc.dg/torture/pr107301.c | 15 ++ gcc/timevar.def | 1 + gcc/tree-cfg.cc | 7 + gcc/tree-inline.cc | 5 + gcc/tree-pass.h | 6 +- gcc/tree-ssa-ccp.cc | 6 + gcc/tree-vrp.cc | 35 +++ 33 files changed, 764 insertions(+), 18 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp23/attr-assume5.C create mode 100644 gcc/testsuite/g++.dg/cpp23/attr-assume6.C create mode 100644 gcc/testsuite/g++.dg/cpp23/attr-assume7.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr107301.c