This is an automated email from the git hooks/post-receive script.
tcwg-buildslave pushed a change to branch linaro-local/ci/tcwg_kernel/gnu-master-arm-stable-allmodconfig in repository toolchain/ci/gcc.
from 3c405283908 * gcc.dg/debug/enum-1.c: Add -fno-eliminate-unused- [...] adds 046bb3cbd91 2019-06-03 François Dumont fdumont@gcc.gnu.org adds 53c96fb103d * bb-reorder.c (copy_bb_p): Don't overflow size calculatio [...] adds 7281ed1ce6c runtime: fix assembly syntax adds d0226ba4caf Fix uses of static_assert not guarded by C++11 check adds 39369b2c0ed * sv.po: Update. adds bb2a57d6dba rs6000: Delete wg adds 9ef812efa1b rs6000: Delete -mmfpgpr adds 7083b698798 runtime: remove unnecessary functions calling between C and Go adds 015399f943e compiler: permit inlining references to global variables adds 403e8311f8c libgo: delay applying profile stack-frame skip until fixup adds 32fdeb30ccc 2019-06-03 Paolo Carlini paolo.carlini@oracle.com adds 03f42d617c8 compiler, runtime, reflect: generate unique type descriptors adds f8af935569e PR90689, ICE in extract_insn on ppc64le adds aa7d9525b88 Daily bump. adds d4c3d1d03cf IPA ICF: rewrite references into a hash_map. adds 5f8de6990a6 IPA ICF: use fibonacci heap instead of list as a worklist. adds db133a52e1c 2019-06-04 Richard Biener rguenther@suse.de adds 261a0eea457 2019-06-04 Richard Biener rguenther@suse.de adds 4ef6914e73d Fix typo in tests. adds 384aea128aa * gimplify.c (gimplify_scan_omp_clauses): Don't sorry_at o [...] new 93e296b8fb2 Remove dead code in IPA ICF. new 8a9112cda6b Reduce accumulated garbage in constexpr evaluation. new 7e0a9a7a1ec PR c++/60531 - Wrong error about unresolved overloaded function new 573559dbbf0 [C++ PATCH] structure tag lookup
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/ChangeLog | 151 +++++ gcc/DATESTAMP | 2 +- gcc/bb-reorder.c | 15 +- gcc/config/rs6000/constraints.md | 3 - gcc/config/rs6000/rs6000-c.c | 2 - gcc/config/rs6000/rs6000-cpus.def | 10 +- gcc/config/rs6000/rs6000.c | 40 +- gcc/config/rs6000/rs6000.h | 2 - gcc/config/rs6000/rs6000.md | 36 +- gcc/config/rs6000/rs6000.opt | 7 +- gcc/cp/ChangeLog | 29 + gcc/cp/constexpr.c | 25 + gcc/cp/cp-tree.h | 2 +- gcc/cp/name-lookup.c | 125 ++-- gcc/cp/parser.c | 12 +- gcc/cp/typeck.c | 12 +- gcc/doc/extend.texi | 11 +- gcc/doc/invoke.texi | 10 +- gcc/doc/md.texi | 5 +- gcc/gimplify.c | 26 +- gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/export.cc | 163 +++++- gcc/go/gofrontend/export.h | 11 +- gcc/go/gofrontend/expressions.cc | 91 ++- gcc/go/gofrontend/expressions.h | 10 +- gcc/go/gofrontend/gogo.cc | 253 +++++++- gcc/go/gofrontend/gogo.h | 67 ++- gcc/go/gofrontend/import.cc | 97 +++- gcc/go/gofrontend/import.h | 50 +- gcc/go/gofrontend/names.cc | 23 + gcc/go/gofrontend/runtime.def | 4 + gcc/go/gofrontend/types.cc | 17 + gcc/ipa-icf.c | 118 ++-- gcc/ipa-icf.h | 62 +- gcc/omp-expand.c | 89 +-- gcc/omp-low.c | 41 +- gcc/po/ChangeLog | 4 + gcc/po/sv.po | 642 ++++++++------------- gcc/testsuite/ChangeLog | 29 + gcc/testsuite/c-c++-common/goacc/acc-icf.c | 4 +- .../c-c++-common/gomp/lastprivate-conditional-2.c | 4 +- gcc/testsuite/g++.dg/template/operator15.C | 6 + gcc/testsuite/gcc.dg/pr90726.c | 56 ++ gcc/testsuite/gcc.dg/torture/pr90738.c | 20 + .../gcc.dg/tree-ssa/alias-access-path-1.c | 5 +- gcc/testsuite/gcc.target/powerpc/mmfpgpr.c | 22 - gcc/testsuite/gfortran.dg/goacc/pr78027.f90 | 4 +- gcc/tree-chrec.c | 65 +++ gcc/tree-scalar-evolution.c | 110 ++-- gcc/tree-ssa-alias.c | 6 +- gcc/tree-ssa-loop-ivopts.c | 92 +-- gcc/tree-ssa-sccvn.c | 9 +- gcc/tree-ssa-sccvn.h | 2 +- libgo/go/reflect/type.go | 131 +++-- libgo/go/runtime/mprof.go | 38 +- libgo/go/runtime/stubs.go | 64 +- libgo/go/runtime/traceback_gccgo.go | 6 +- libgo/go/runtime/type.go | 78 ++- libgo/runtime/go-callers.c | 10 +- libgo/runtime/go-context.S | 2 +- libgo/runtime/go-libmain.c | 1 - libgo/runtime/go-main.c | 1 - libgo/runtime/proc.c | 10 - libgo/runtime/runtime.h | 15 - libgomp/ChangeLog | 7 + .../lastprivate-conditional-10.c | 57 ++ .../lastprivate-conditional-7.c | 63 ++ .../lastprivate-conditional-8.c | 60 ++ .../lastprivate-conditional-9.c | 60 ++ libstdc++-v3/ChangeLog | 11 + libstdc++-v3/include/bits/hashtable.h | 220 +++---- libstdc++-v3/include/bits/hashtable_policy.h | 97 ++-- libstdc++-v3/include/bits/stl_map.h | 2 + libstdc++-v3/include/bits/stl_multimap.h | 2 + 74 files changed, 2294 insertions(+), 1344 deletions(-) create mode 100644 gcc/testsuite/g++.dg/template/operator15.C create mode 100644 gcc/testsuite/gcc.dg/pr90726.c create mode 100644 gcc/testsuite/gcc.dg/torture/pr90738.c delete mode 100644 gcc/testsuite/gcc.target/powerpc/mmfpgpr.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/lastprivate-conditional-10.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/lastprivate-conditional-7.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/lastprivate-conditional-8.c create mode 100644 libgomp/testsuite/libgomp.c-c++-common/lastprivate-conditional-9.c