This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu_native_build/master-arm in repository toolchain/ci/gcc.
from 1bc66017c11 invoke.texi: Fix @opindex for -foffload-options adds 74cb45e67d1 Correct implementation of wi::clz adds 9f99555f29c Daily bump. adds 58572bbb62c MIPS: add .module arch and ase to all output asm adds 546ecb0054a rs6000: Expand fmod and remainder when built with fast-math [...] adds 13beaf9e8d2 Fortran: Revert to non-multilib-specific ISO_Fortran_binding.h adds cff72ef4e2f libgomp.texi: Add OpenMP Implementation Status adds f387ff788f6 tree-optimization/101555 - avoid redundant alias queries in PRE adds aad72d2ea83 inline: do not einline when no_profile_instrument_function [...] adds ba1cc6956b9 C, C++, Fortran, OpenMP: Add support for 'flush seq_cst' co [...] adds 843068149ec tree-optimization/102226 - fix epilogue vector re-use adds ad9fcb961c0 x86: Enable FMA in unsigned SI to SF expanders adds 81e9178fe7f Fix PR debug/101947 adds fc4f0631de8 libgfortran: Makefile fix for ISO_Fortran_binding.h new 020e2db0a80 Rename forwarder_block_p in treading code to empty_block_wi [...] new ff7bc505b17 libgomp.texi: Extend OpenMP 5.0 Implementation Status new 81f9718139c c++: Fix up constexpr evaluation of deleting dtors [PR100495]
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: contrib/ChangeLog | 6 + gcc/ChangeLog | 52 ++++++ gcc/DATESTAMP | 2 +- gcc/c-family/c-omp.c | 2 +- gcc/c/c-parser.c | 7 +- gcc/config/i386/i386-expand.c | 41 +++-- gcc/config/mips/mips.c | 37 ++++ gcc/config/rs6000/rs6000.md | 36 ++++ gcc/cp/constexpr.c | 4 +- gcc/cp/parser.c | 7 +- gcc/cp/semantics.c | 2 +- gcc/dwarf2out.c | 52 +++++- gcc/fortran/openmp.c | 6 +- gcc/fortran/trans-openmp.c | 3 +- gcc/ipa-inline.c | 17 ++ gcc/testsuite/ChangeLog | 23 +++ gcc/testsuite/c-c++-common/gomp/flush-1.c | 9 + gcc/testsuite/c-c++-common/gomp/flush-2.c | 7 +- gcc/testsuite/g++.dg/cpp2a/constexpr-new21.C | 17 ++ gcc/testsuite/g++.dg/gomp/attrs-1.C | 6 + gcc/testsuite/g++.dg/gomp/attrs-2.C | 6 + gcc/testsuite/g++.dg/vect/pr102226.cc | 29 +++ .../gcc.dg/no_profile_instrument_function-attr-2.c | 15 ++ gcc/testsuite/gcc.target/i386/pr85819-1a.c | 11 ++ gcc/testsuite/gcc.target/i386/pr85819-1b.c | 6 + gcc/testsuite/gcc.target/i386/pr85819-2a.c | 17 ++ gcc/testsuite/gcc.target/i386/pr85819-2b.c | 6 + gcc/testsuite/gcc.target/i386/pr85819-2c.c | 7 + gcc/testsuite/gcc.target/i386/pr85819-3.c | 18 ++ gcc/testsuite/gcc.target/powerpc/pr97142.c | 35 ++++ gcc/testsuite/gfortran.dg/gomp/flush-1.f90 | 8 + gcc/testsuite/gfortran.dg/gomp/flush-2.f90 | 9 +- gcc/tree-ssa-pre.c | 97 ++++------ gcc/tree-ssa-threadedge.c | 9 +- gcc/tree-vect-loop.c | 4 +- gcc/wide-int.cc | 7 +- libgcc/ChangeLog | 10 + libgfortran/ISO_Fortran_binding-2-tmpl.h | 42 ----- libgfortran/ISO_Fortran_binding-3-tmpl.h | 5 - ...tran_binding-1-tmpl.h => ISO_Fortran_binding.h} | 77 ++++++++ libgfortran/Makefile.am | 18 +- libgfortran/Makefile.in | 18 +- libgfortran/mk-kinds-h.sh | 25 +-- libgomp/ChangeLog | 4 + libgomp/libgomp.texi | 203 ++++++++++++++++++++- 45 files changed, 815 insertions(+), 207 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp2a/constexpr-new21.C create mode 100644 gcc/testsuite/g++.dg/vect/pr102226.cc create mode 100644 gcc/testsuite/gcc.dg/no_profile_instrument_function-attr-2.c create mode 100644 gcc/testsuite/gcc.target/i386/pr85819-1a.c create mode 100644 gcc/testsuite/gcc.target/i386/pr85819-1b.c create mode 100644 gcc/testsuite/gcc.target/i386/pr85819-2a.c create mode 100644 gcc/testsuite/gcc.target/i386/pr85819-2b.c create mode 100644 gcc/testsuite/gcc.target/i386/pr85819-2c.c create mode 100644 gcc/testsuite/gcc.target/i386/pr85819-3.c create mode 100644 gcc/testsuite/gcc.target/powerpc/pr97142.c delete mode 100644 libgfortran/ISO_Fortran_binding-2-tmpl.h delete mode 100644 libgfortran/ISO_Fortran_binding-3-tmpl.h rename libgfortran/{ISO_Fortran_binding-1-tmpl.h => ISO_Fortran_binding.h} (73%)