This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from ae13af26060 tree-optimization/115599 - reassoc qsort comparator issue new 5185274c76c rtl-ssa: Rework _ignoring interfaces new 792f97b44ff Add a late-combine pass [PR106594]
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/Makefile.in | 1 + gcc/common.opt | 5 + gcc/config/aarch64/aarch64-cc-fusion.cc | 4 +- gcc/config/i386/i386-options.cc | 4 + gcc/config/rs6000/rs6000.cc | 8 + gcc/config/xtensa/xtensa.cc | 11 + gcc/doc/invoke.texi | 11 +- gcc/doc/passes.texi | 19 + gcc/doc/rtl.texi | 14 +- gcc/late-combine.cc | 747 +++++++++++++++++++++ gcc/opts.cc | 1 + gcc/pair-fusion.cc | 34 +- gcc/passes.def | 2 + gcc/rtl-ssa.h | 1 + gcc/rtl-ssa/access-utils.h | 145 ++-- gcc/rtl-ssa/change-utils.h | 67 +- gcc/rtl-ssa/changes.h | 13 - gcc/rtl-ssa/functions.h | 16 +- gcc/rtl-ssa/insn-utils.h | 8 - gcc/rtl-ssa/insns.h | 12 - gcc/rtl-ssa/member-fns.inl | 35 +- gcc/rtl-ssa/movement.h | 118 ++-- gcc/rtl-ssa/predicates.h | 58 ++ gcc/testsuite/gcc.dg/ira-shrinkwrap-prep-1.c | 2 +- gcc/testsuite/gcc.dg/ira-shrinkwrap-prep-2.c | 2 +- gcc/testsuite/gcc.dg/stack-check-4.c | 2 +- .../aarch64/bitfield-bitint-abi-align16.c | 2 +- .../aarch64/bitfield-bitint-abi-align8.c | 2 +- gcc/testsuite/gcc.target/aarch64/pr106594_1.c | 20 + gcc/testsuite/gcc.target/aarch64/sve/cond_asrd_3.c | 10 +- .../gcc.target/aarch64/sve/cond_convert_3.c | 8 +- .../gcc.target/aarch64/sve/cond_convert_6.c | 8 +- gcc/testsuite/gcc.target/aarch64/sve/cond_fabd_5.c | 11 +- .../gcc.target/aarch64/sve/cond_unary_4.c | 13 +- gcc/tree-pass.h | 1 + 35 files changed, 1128 insertions(+), 287 deletions(-) create mode 100644 gcc/late-combine.cc create mode 100644 gcc/rtl-ssa/predicates.h create mode 100644 gcc/testsuite/gcc.target/aarch64/pr106594_1.c