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-aarch64-next-allmodconfig in repository toolchain/ci/gcc.
from 129fbb22822 PR testsuite/90772 * g++.dg/cpp1y/feat-cxx14.C: Use std:: [...] adds 921f6cc2511 * config/i386/i386-protos.h (ix86_split_fp_absneg_operator [...] adds 31ab107423b compiler: make escape analysis work with imported inlin [...] adds 7a429a9d52a Reduce constexpr_call memory consumption. adds e25c1ab4bde Reduce unsharing in constexpr call evaluation. adds 714c2a31ce7 * constexpr.c (free_constructor): New. adds 29598ea5ef1 PR c++/87250 * g++.dg/cpp0x/pr87250.C: New test. adds dcd673ac78a compiler: use gcWriteBarrier for pointer-shaped struct/array adds 1a82e1c19d1 compiler: permit inlining functions with labels and got [...] adds d6eeba0174d compiler: make heap expression's write barrier conditional adds 171fd404a44 compiler: support inlining functions that use index exp [...] adds 84b2611a944 * config/i386/i386.md (absneg fp_reg splitter): Fix operat [...] adds 8ec051c0244 Daily bump. adds d20cdfb027f * libgcov-merge.c (__gcov_merge_single): Revert previous change. adds 64940dfc838 Disable htable sanitization in pt.c (PR c++/87847). adds c7d7137a909 PR bootstrap/90819 * trans-mem.c (tm_memopt_compute_avail [...] adds 7aab47d0273 2019-06-11 Richard Biener rguenthe@suse.de adds 7f6a0bbc5ed Import these changes from the binutils/gdb repository: adds d2169aa0e6b * gdbhooks.py (TreePrinter.to_string): Recognize ggc_free' [...] adds 42bbc632ab2 fold_real_zero_addition_p for vectors adds 78a67eadc71 PR c++/90810 * init.c (constant_value_1): Handle VECTOR_C [...] adds c89f472ebdb 2019-06-11 Richard Biener rguenther@suse.de adds d5d463f627a PR c++/90449 - add -Winaccessible-base option. [...] adds c434f6f1850 Allow conversions in X/[ex]4 < Y/[ex]4 adds 9a75566e139 2019-06-09 Edward Smith-Rowland 3dw4rd@verizon.net new 4034da6cb1e PR target/90811 * config/nvptx/nvptx.c (nvptx_output_soft [...]
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: ChangeLog | 19 + Makefile.def | 13 +- Makefile.in | 1313 +++++++++++++++++++- configure | 2 +- configure.ac | 2 +- gcc/ChangeLog | 78 ++ gcc/DATESTAMP | 2 +- gcc/c-family/ChangeLog | 5 + gcc/c-family/c.opt | 4 + gcc/config/i386/i386-expand.c | 116 +- gcc/config/i386/i386-protos.h | 2 + gcc/config/i386/i386.md | 269 ++-- gcc/config/i386/predicates.md | 3 - gcc/config/i386/sse.md | 34 +- gcc/config/nvptx/nvptx.c | 2 +- gcc/cp/ChangeLog | 45 + gcc/cp/class.c | 18 +- gcc/cp/constexpr.c | 124 +- gcc/cp/init.c | 7 +- gcc/cp/pt.c | 5 +- gcc/cp/typeck2.c | 31 +- gcc/d/ChangeLog | 8 + gcc/d/toir.cc | 29 +- gcc/doc/invoke.texi | 17 + gcc/fold-const.c | 17 +- gcc/gdbhooks.py | 3 + gcc/go/gofrontend/MERGE | 2 +- gcc/go/gofrontend/escape.cc | 14 +- gcc/go/gofrontend/export.cc | 23 + gcc/go/gofrontend/export.h | 13 +- gcc/go/gofrontend/expressions.cc | 149 ++- gcc/go/gofrontend/expressions.h | 21 + gcc/go/gofrontend/gogo.cc | 20 +- gcc/go/gofrontend/gogo.h | 9 +- gcc/go/gofrontend/import.cc | 48 +- gcc/go/gofrontend/import.h | 14 +- gcc/go/gofrontend/statements.cc | 213 +++- gcc/go/gofrontend/statements.h | 44 +- gcc/go/gofrontend/types.h | 7 +- gcc/go/gofrontend/wb.cc | 23 +- gcc/hash-table.h | 4 +- gcc/match.pd | 23 +- gcc/print-tree.c | 16 +- gcc/testsuite/ChangeLog | 22 + gcc/testsuite/g++.dg/cpp0x/pr87250.C | 12 + gcc/testsuite/g++.dg/ext/vector37.C | 29 + gcc/testsuite/g++.dg/warn/Winaccessible-base-1.C | 7 + gcc/testsuite/g++.dg/warn/Winaccessible-base-2.C | 8 + .../g++.dg/warn/Winaccessible-virtual-base-1.C | 10 + .../g++.dg/warn/Winaccessible-virtual-base-2.C | 10 + gcc/testsuite/gcc.dg/tree-ssa/cmpexactdiv-5.c | 11 + gcc/trans-mem.c | 4 +- gcc/tree.c | 6 +- libgcc/ChangeLog | 4 + libgcc/libgcov-merge.c | 5 +- libgomp/ChangeLog | 5 + libgomp/testsuite/libgomp.c/pr90811.c | 29 + libstdc++-v3/ChangeLog | 8 + .../requirements/constexpr_iter.cc | 6 +- .../array/requirements/constexpr_iter.cc | 6 +- 60 files changed, 2597 insertions(+), 396 deletions(-) create mode 100644 gcc/testsuite/g++.dg/cpp0x/pr87250.C create mode 100644 gcc/testsuite/g++.dg/ext/vector37.C create mode 100644 gcc/testsuite/g++.dg/warn/Winaccessible-base-1.C create mode 100644 gcc/testsuite/g++.dg/warn/Winaccessible-base-2.C create mode 100644 gcc/testsuite/g++.dg/warn/Winaccessible-virtual-base-1.C create mode 100644 gcc/testsuite/g++.dg/warn/Winaccessible-virtual-base-2.C create mode 100644 gcc/testsuite/gcc.dg/tree-ssa/cmpexactdiv-5.c create mode 100644 libgomp/testsuite/libgomp.c/pr90811.c