This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch devel/c++-coroutines in repository gcc.
from 4c7d3d928bc Merge master r12-3866. adds 053e1d64210 Create a ranger-local flag for non-executable edges. adds fe4e6c824a5 Look for a relation between operands only when possible. adds eb9f099c3df c++: add spellcheck suggestions for typedef etc. [PR77565] adds e5c0492b7f4 c++: adjust the handling of RID_ATTRIBUTE. adds 2646d0e06b1 Fortran: Diagnose default-initialized pointer/allocatable dummies adds 391b23e02bf Daily bump. adds ea0f450e98d AVX512FP16: Support cond_op for HFmode adds f91b11eb889 Fix null-pointer dereference in delete_dead_or_redundant_ca [...] adds 29c92857039 Fix value uninitialization in vn_reference_insert_pieces [P [...] adds 4a960d548b7 Avoid invalid loop transformations in jump threading registry. adds 204f56aa65d Fortran: Improve file-reading error diagnostic [PR55534] adds 710c6ab4ad5 Verify unallocated edge/BB flags are clear adds 9b11107ed72 libstdc++: Remove redundant 'inline' specifiers adds 55b3299dcd1 path solver: Avoid further lookups when range is defined in block. adds 51ca0503195 Make profitability calculation of RA conflict presentations [...] new cc4e4cc2fc3 Merge master r12-3881.
The 1 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/ChangeLog | 169 +++++++++++++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 140 +++++++++++++++++ gcc/cfghooks.c | 13 ++ gcc/config/i386/sse.md | 112 +++++++------- gcc/cp/ChangeLog | 26 ++++ gcc/cp/parser.c | 35 +++-- gcc/fortran/ChangeLog | 13 ++ gcc/fortran/decl.c | 14 ++ gcc/fortran/scanner.c | 66 +++----- gcc/gimple-range-cache.cc | 3 +- gcc/gimple-range-cache.h | 2 +- gcc/gimple-range-fold.cc | 4 + gcc/gimple-range-gori.cc | 5 +- gcc/gimple-range-gori.h | 7 +- gcc/gimple-range-path.cc | 9 +- gcc/gimple-range.cc | 22 ++- gcc/gimple-range.h | 1 + gcc/gimple-ssa-evrp.c | 12 +- gcc/ira-build.c | 13 +- gcc/testsuite/ChangeLog | 66 ++++++++ gcc/testsuite/g++.dg/spellcheck-pr77565.C | 12 ++ gcc/testsuite/gcc.dg/pr102463.c | 21 +++ gcc/testsuite/gcc.dg/tree-ssa/20030714-2.c | 7 +- gcc/testsuite/gcc.dg/tree-ssa/pr66752-3.c | 19 ++- gcc/testsuite/gcc.dg/tree-ssa/pr77445-2.c | 4 +- gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-18.c | 4 +- gcc/testsuite/gcc.dg/tree-ssa/ssa-dom-thread-7.c | 4 +- gcc/testsuite/gcc.dg/vect/bb-slp-16.c | 7 - ...float-1.c => cond_op_addsubmuldiv__Float16-1.c} | 2 +- .../i386/cond_op_addsubmuldiv__Float16-2.c | 7 + ...d_op_fma_float-1.c => cond_op_fma__Float16-1.c} | 26 ++-- .../gcc.target/i386/cond_op_fma__Float16-2.c | 7 + .../gcc.target/i386/cond_op_maxmin__Float16-1.c | 8 + .../gcc.target/i386/cond_op_maxmin__Float16-2.c | 7 + gcc/testsuite/gfortran.dg/c-interop/c516.f90 | 46 +++++- gcc/testsuite/gfortran.dg/include_23.f90 | 4 + gcc/testsuite/gfortran.dg/include_24.f90 | 4 + gcc/testsuite/gfortran.dg/include_9.f90 | 1 + gcc/tree-ssa-dse.c | 5 +- gcc/tree-ssa-sccvn.c | 1 + gcc/tree-ssa-threadupdate.c | 67 ++++++-- gcc/tree-ssa-threadupdate.h | 1 + gcc/vr-values.c | 24 ++- gcc/vr-values.h | 8 +- libiberty/ChangeLog | 10 ++ libstdc++-v3/ChangeLog | 39 +++++ libstdc++-v3/include/bits/range_access.h | 4 +- 48 files changed, 885 insertions(+), 198 deletions(-) create mode 100644 gcc/testsuite/g++.dg/spellcheck-pr77565.C create mode 100644 gcc/testsuite/gcc.dg/pr102463.c copy gcc/testsuite/gcc.target/i386/{cond_op_addsubmuldiv_float-1.c => cond_op_adds [...] create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv__Float16-2.c copy gcc/testsuite/gcc.target/i386/{cond_op_fma_float-1.c => cond_op_fma__Float16- [...] create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_fma__Float16-2.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_maxmin__Float16-1.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_maxmin__Float16-2.c create mode 100644 gcc/testsuite/gfortran.dg/include_23.f90 create mode 100644 gcc/testsuite/gfortran.dg/include_24.f90