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 97374f25e1e Daily bump. new 627132c9bf9 tree-optimization/105937 - avoid uninit diagnostics crossin [...] new 2b9e1f7ff47 tree-optimization/106892 - avoid invalid pointer associatio [...] new e364e27b663 tree-optimization/106922 - PRE and virtual operand translation new c3119f575a0 tree-optimization/106934 - avoid BIT_FIELD_REF of bitfields
The 4 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/testsuite/g++.dg/tree-ssa/pr106922.C | 91 ++++++++++++ gcc/testsuite/g++.dg/uninit-pr105937.C | 235 +++++++++++++++++++++++++++++++ gcc/testsuite/gcc.dg/torture/pr106892.c | 30 ++++ gcc/testsuite/gfortran.dg/pr106934.f90 | 7 + gcc/tree-predcom.cc | 18 ++- gcc/tree-ssa-pre.cc | 18 ++- gcc/tree-ssa-uninit.cc | 14 +- gcc/tree-ssa.cc | 6 + 8 files changed, 409 insertions(+), 10 deletions(-) create mode 100644 gcc/testsuite/g++.dg/tree-ssa/pr106922.C create mode 100644 gcc/testsuite/g++.dg/uninit-pr105937.C create mode 100644 gcc/testsuite/gcc.dg/torture/pr106892.c create mode 100644 gcc/testsuite/gfortran.dg/pr106934.f90