This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gcc_check_bootstrap/master-aarch64-check_bootstrap_lto in repository toolchain/ci/gcc.
from 43358e91bd1 libstdc++: Remove c++20-specific dg-error directives in test adds 54810401974 libiberty: prevent buffer overflow when decoding user input adds b3585c0836e libiberty: prevent null dereferencing on dlang_type adds 1b07d9dce6c Fortran: Handle allocated() with coindexed scalars [PR93834] 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 new 9b11107ed72 libstdc++: Remove redundant 'inline' specifiers new 55b3299dcd1 path solver: Avoid further lookups when range is defined in block. new 51ca0503195 Make profitability calculation of RA conflict presentations [...]
The 3 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/fortran/trans-intrinsic.c | 55 ++++--- 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 - .../i386/cond_op_addsubmuldiv__Float16-1.c | 9 ++ .../i386/cond_op_addsubmuldiv__Float16-2.c | 7 + .../gcc.target/i386/cond_op_fma__Float16-1.c | 20 +++ .../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 +++++- .../gfortran.dg/coarray/coarray_allocated.f90 | 55 +++++++ 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 ++ libiberty/d-demangle.c | 4 +- libiberty/testsuite/d-demangle-expected | 5 +- libstdc++-v3/ChangeLog | 39 +++++ libstdc++-v3/include/bits/range_access.h | 4 +- 52 files changed, 995 insertions(+), 208 deletions(-) create mode 100644 gcc/testsuite/g++.dg/spellcheck-pr77565.C create mode 100644 gcc/testsuite/gcc.dg/pr102463.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv__Float16-1.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_addsubmuldiv__Float16-2.c create mode 100644 gcc/testsuite/gcc.target/i386/cond_op_fma__Float16-1.c 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/coarray/coarray_allocated.f90 create mode 100644 gcc/testsuite/gfortran.dg/include_23.f90 create mode 100644 gcc/testsuite/gfortran.dg/include_24.f90