This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_gnu/gnu-master-arm-bootstrap_O3 in repository toolchain/ci/gcc.
from 82198676c80 c++: ICE with invalid use of 'this' with static memfn [PR98800] adds 1d54b138417 Daily bump. adds 936d500dfc1 c++: ICE with anonymous union [PR97974] adds c660464a9ef ada: Avoid invalid "up" link in manual adds cdb23bba5c4 MAINTAINERS: Add myself for write after approval adds ac200799acb [OpenACC] Fix an ICE where a loop with GT condition is collapsed. adds a0ecde220da Daily bump. adds f2be08339b7 Change march=alderlake ISA list and add m_ALDERLAKE to m_CORE_AVX2 adds c02c39fad02 Add rocketlake to gcc. adds 29046e02b84 libstdc++: Fix test that fails in C++20 mode [PR 99995] adds a694a02125f mklog: support long filenames adds 91dd7954c44 libstdc++: Fix some tests that fail in C++20 mode adds 598359f627d ASAN: do not unpoison in OpenMP context adds 1c35444b919 gcc-changelog: do not allow space in long line adds 7569ce583f5 libstdc++: Implement LWG 3404 for C++20 subrange [PR 100044] adds bb8f2c32306 docs: update symver attribute description adds 46c47420a5f IBM Z: Add alternative to *movdi_{31,64} in order to load a [...] adds 8f17d44ad98 docs: fix content of smallexample new 7650259de8f Update gcc sv.po. new 84081e2c6bd c++: premature overload resolution [PR93085] new eb49f7de934 libgo: update to Go1.16.3 release
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: ChangeLog | 4 + MAINTAINERS | 1 + contrib/gcc-changelog/git_commit.py | 6 +- contrib/gcc-changelog/test_email.py | 4 + contrib/gcc-changelog/test_patches.txt | 35 +++++++++ gcc/ChangeLog | 37 ++++++++++ gcc/DATESTAMP | 2 +- gcc/ada/ChangeLog | 4 + gcc/ada/gnat_ugn.texi | 2 +- gcc/analyzer/ChangeLog | 6 ++ gcc/c/ChangeLog | 6 ++ gcc/common/config/i386/cpuinfo.h | 11 ++- gcc/common/config/i386/i386-common.c | 4 + gcc/common/config/i386/i386-cpuinfo.h | 1 + gcc/config.gcc | 2 +- gcc/config/i386/i386-c.c | 7 ++ gcc/config/i386/i386-options.c | 7 +- gcc/config/i386/i386.h | 10 ++- gcc/config/s390/s390.md | 25 ++++--- gcc/cp/ChangeLog | 29 ++++++++ gcc/cp/decl.c | 8 ++ gcc/cp/pt.c | 21 ++++-- gcc/d/ChangeLog | 4 + gcc/doc/extend.texi | 27 +++++-- gcc/doc/invoke.texi | 17 ++++- gcc/gimplify.c | 3 +- gcc/go/gofrontend/MERGE | 2 +- gcc/omp-expand.c | 2 +- gcc/po/sv.po | 30 ++++---- gcc/testsuite/ChangeLog | 58 +++++++++++++++ gcc/testsuite/c-c++-common/goacc/collapse-2.c | 56 ++++++++++++++ gcc/testsuite/g++.dg/asan/pr99877.C | 19 +++++ gcc/testsuite/g++.dg/lookup/pr84962.C | 2 +- gcc/testsuite/g++.dg/other/anon-union5.C | 9 +++ gcc/testsuite/g++.dg/template/dependent-tmpl1.C | 9 +++ gcc/testsuite/g++.target/i386/mv16.C | 6 ++ gcc/testsuite/gcc.target/i386/funcspec-56.inc | 1 + libgo/MERGE | 2 +- libgo/VERSION | 2 +- libgo/go/cmd/go.mod | 2 +- libgo/go/cmd/go/alldocs.go | 20 +++-- libgo/go/cmd/go/internal/modfetch/cache.go | 17 +++++ libgo/go/cmd/go/internal/modfetch/fetch.go | 77 ++++++++++++-------- libgo/go/cmd/go/internal/work/build.go | 20 +++-- libgo/go/cmd/go/testdata/script/mod_verify.txt | 7 +- libgo/go/cmd/vendor/modules.txt | 2 +- libgo/go/golang.org/x/mod/module/module.go | 38 ++++++++-- libgo/go/runtime/symtab_test.go | 85 ++++++++++++++++++++++ libgo/go/runtime/time.go | 5 ++ libgo/go/testing/helper_test.go | 32 ++++++++ libgo/go/testing/testing.go | 15 ++-- libgo/go/time/sleep_test.go | 16 ++++ libgo/misc/cgo/testplugin/plugin_test.go | 7 ++ .../testplugin/testdata/issue44956/base/base.go | 7 ++ .../cgo/testplugin/testdata/issue44956/main.go | 47 ++++++++++++ .../cgo/testplugin/testdata/issue44956/plugin1.go | 9 +++ .../cgo/testplugin/testdata/issue44956/plugin2.go | 11 +++ libgomp/ChangeLog | 7 ++ .../libgomp.oacc-c-c++-common/collapse-2.c | 17 ++++- .../libgomp.oacc-c-c++-common/collapse-3.c | 15 +++- libphobos/ChangeLog | 52 +++++++++++++ libstdc++-v3/include/bits/ranges_util.h | 15 ---- .../testsuite/17_intro/headers/c++1998/49745.cc | 4 +- .../requirements/non_uint_neg.cc | 4 +- .../testsuite/std/ranges/subrange/lwg3282_neg.cc | 13 ++++ .../requirements/non_uint_neg.cc | 3 +- 66 files changed, 881 insertions(+), 147 deletions(-) create mode 100644 gcc/testsuite/c-c++-common/goacc/collapse-2.c create mode 100644 gcc/testsuite/g++.dg/asan/pr99877.C create mode 100644 gcc/testsuite/g++.dg/other/anon-union5.C create mode 100644 gcc/testsuite/g++.dg/template/dependent-tmpl1.C create mode 100644 libgo/misc/cgo/testplugin/testdata/issue44956/base/base.go create mode 100644 libgo/misc/cgo/testplugin/testdata/issue44956/main.go create mode 100644 libgo/misc/cgo/testplugin/testdata/issue44956/plugin1.go create mode 100644 libgo/misc/cgo/testplugin/testdata/issue44956/plugin2.go